summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorTim Keller <tjkeller.xyz>2025-04-09 22:54:01 -0500
committerTim Keller <tjkeller.xyz>2025-04-09 22:54:01 -0500
commite6f18221de4e51342d7e6683cefb74488019c12b (patch)
treec52f735614fdcfb7db3aa02ed0a02e8a78a4aa24 /modules
parentd82edfcf8a36f798c73c38dddada6a70a4e1c009 (diff)
downloadnixos-e6f18221de4e51342d7e6683cefb74488019c12b.tar.xz
nixos-e6f18221de4e51342d7e6683cefb74488019c12b.zip
update flake and fix bugs
Diffstat (limited to 'modules')
-rw-r--r--modules/home/firefox.nix2
-rw-r--r--modules/root/x11.nix10
2 files changed, 6 insertions, 6 deletions
diff --git a/modules/home/firefox.nix b/modules/home/firefox.nix
index 9d4bb4e..000277f 100644
--- a/modules/home/firefox.nix
+++ b/modules/home/firefox.nix
@@ -40,7 +40,7 @@
"0100"."0102"."browser.startup.page".value = 3; # 0=blank, 1=home, 2=last visited page, 3=resume previous session
"0100"."0103"."browser.startup.homepage".enable = false;
"0100"."0104"."browser.newtabpage.enabled".enable = false;
- "2800"."2811"."privacy.clearOnShutdown.history".enable = false;
+ #"2800"."2811"."privacy.clearOnShutdown.history".enable = false;
};
settings = {
"browser.compactmode.show" = true;
diff --git a/modules/root/x11.nix b/modules/root/x11.nix
index fd15c52..7311cba 100644
--- a/modules/root/x11.nix
+++ b/modules/root/x11.nix
@@ -20,11 +20,11 @@
xorg.xset
xwallpaper
# Patch startx to be compliant with xdg base dir spec
- (xorg.xinit.overrideAttrs (old: rec {
- patches = [
- ./resources/x11/xinit-startx-xdg.patch
- ];
- }))
+ #(xorg.xinit.overrideAttrs (old: rec {
+ # patches = [
+ # ./resources/x11/xinit-startx-xdg.patch
+ # ];
+ #}))
];
};
}