summaryrefslogtreecommitdiff
path: root/accounts/gkleen@skadhi/firefox/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'accounts/gkleen@skadhi/firefox/default.nix')
-rw-r--r--accounts/gkleen@skadhi/firefox/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/accounts/gkleen@skadhi/firefox/default.nix b/accounts/gkleen@skadhi/firefox/default.nix
new file mode 100644
index 00000000..9b3be324
--- /dev/null
+++ b/accounts/gkleen@skadhi/firefox/default.nix
@@ -0,0 +1,24 @@
1{ ... }:
2{
3 config = {
4 programs.firefox = {
5 enable = true;
6 profiles.default = {
7 settings = {
8 "browser.tabs.drawInTitlebar" = false;
9 "toolkit.legacyUserProfileCustomizations.stylesheets" = true;
10 "dom.security.https_only_mode" = true;
11 };
12 };
13 };
14
15 home.persistence."/persistent".directories = [
16 ".mozilla/firefox"
17 ];
18
19 home.file = {
20 ".mozilla/firefox/default/chrome/userChrome.css".source = ./userChrome.css;
21 ".mozilla/firefox/default/chrome/userContent.css".source = ./userContent.css;
22 };
23 };
24}