1
0

feat: initial commit; NixOS Era

This commit is contained in:
2025-11-20 22:13:05 +01:00
commit 8d0bddf680
46 changed files with 2044 additions and 0 deletions

41
home/chromium.nix Normal file
View File

@@ -0,0 +1,41 @@
{
enable = true;
defaultSearchProviderEnabled = true;
defaultSearchProviderSuggestURL = "https://duckduckgo.com/?q={searchTerms}&type=list";
defaultSearchProviderSearchURL = "https://duckduckgo.com/?q={searchTerms}";
extraOpts =
let
languagetool = "oldceeleldhonbafppcapldpdifcinji";
shortkeys = "logpjaacgmcbpdkdchjiaagddngobkck";
darkreader = "eimadpbcbfnmbkopoojfekhnkhdbieeh";
ublock = "ddkjiahejlhfcafbddmgiahcphecmpfh";
in
{
extensions = {
install.initiallist = [
languagetool
shortkeys
darkreader
ublock
];
commands."linux:Alt+Left" = {
command_name = "04-prevtab";
extension = shortkeys;
global = false;
};
commands."linux:Alt+Right" = {
command_name = "03-nexttab";
extension = shortkeys;
global = false;
};
};
message_center.disabled_extension_ids = [ shortkeys ];
profile.content_settings.permission_actions = {
mic_stream = [ { action = 2; } ];
notifications = [ { action = 2; } ];
};
};
}