Skip to content

Commit

Permalink
global: format
Browse files Browse the repository at this point in the history
  • Loading branch information
brckd committed Jun 30, 2024
1 parent 4a0ac1a commit 4c61a28
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion modules/home/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
./rofi
./kitty
./nixvim
./firefox
./firefox
./librewolf
./cava
./vesktop
Expand Down
16 changes: 8 additions & 8 deletions modules/home/firefox/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,19 @@ in {
];
settings = {
"extensions.autoDisableScopes" = 0; # Enable extensions
"toolkit.legacyUserProfileCustomizations.stylesheets" = true; # Enable userchrome
"browser.aboutConfig.showWarning" = false;
"toolkit.legacyUserProfileCustomizations.stylesheets" = true; # Enable userchrome
"browser.aboutConfig.showWarning" = false;

# Blank homepage
"browser.newtabpage.enable" = false;
"browser.startup.homepage" = "chrome://browser/content/blanktab.html";
# Blank homepage
"browser.newtabpage.enable" = false;
"browser.startup.homepage" = "chrome://browser/content/blanktab.html";
"browser.toolbars.bookmarks.visibility" = "never";

# Toolbar customization
"browser.uiCustomization.state" = builtins.readFile ./toolbar.json;
# Toolbar customization
"browser.uiCustomization.state" = builtins.readFile ./toolbar.json;
};

userChrome = builtins.readFile ./userChrome.css;
userChrome = builtins.readFile ./userChrome.css;
};
};
};
Expand Down

0 comments on commit 4c61a28

Please sign in to comment.