diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-04-24 11:01:59 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-04-24 11:01:59 -0700 |
commit | 9ae7cc9ccfef4f88d26fdb5d4188dc57e86b8910 (patch) | |
tree | 036dc27c6b2655aa839010ef1e9b8efa6cfbe957 /home | |
parent | 35ef28be013ae9dfa49843eb5786506b9d11f941 (diff) | |
download | nix-9ae7cc9ccfef4f88d26fdb5d4188dc57e86b8910.tar nix-9ae7cc9ccfef4f88d26fdb5d4188dc57e86b8910.tar.gz nix-9ae7cc9ccfef4f88d26fdb5d4188dc57e86b8910.tar.bz2 nix-9ae7cc9ccfef4f88d26fdb5d4188dc57e86b8910.tar.lz nix-9ae7cc9ccfef4f88d26fdb5d4188dc57e86b8910.tar.xz nix-9ae7cc9ccfef4f88d26fdb5d4188dc57e86b8910.tar.zst nix-9ae7cc9ccfef4f88d26fdb5d4188dc57e86b8910.zip |
Selectively run xscreensaver
Diffstat (limited to 'home')
-rw-r--r-- | home/nipsy/common/optional/desktops/i3/default.nix | 1 | ||||
-rw-r--r-- | home/nipsy/common/optional/desktops/services/xscreensaver.nix | 5 | ||||
-rw-r--r-- | home/nipsy/ginaz.nix | 2 | ||||
-rw-r--r-- | home/nipsy/richese.nix | 4 |
4 files changed, 7 insertions, 5 deletions
diff --git a/home/nipsy/common/optional/desktops/i3/default.nix b/home/nipsy/common/optional/desktops/i3/default.nix index 5af4b3b..a2b7a4c 100644 --- a/home/nipsy/common/optional/desktops/i3/default.nix +++ b/home/nipsy/common/optional/desktops/i3/default.nix @@ -14,7 +14,6 @@ services = { network-manager-applet.enable = true; - xscreensaver.enable = true; }; xsession = { diff --git a/home/nipsy/common/optional/desktops/services/xscreensaver.nix b/home/nipsy/common/optional/desktops/services/xscreensaver.nix new file mode 100644 index 0000000..1d1dcb5 --- /dev/null +++ b/home/nipsy/common/optional/desktops/services/xscreensaver.nix @@ -0,0 +1,5 @@ +{ + services.xscreensaver = { + enable = true; + }; +} diff --git a/home/nipsy/ginaz.nix b/home/nipsy/ginaz.nix index 17d39fd..746e846 100644 --- a/home/nipsy/ginaz.nix +++ b/home/nipsy/ginaz.nix @@ -3,5 +3,7 @@ imports = [ common/core common/optional/desktops + common/optional/desktops + common/optional/desktops/services/xscreensaver.nix ]; } diff --git a/home/nipsy/richese.nix b/home/nipsy/richese.nix index c2b224f..17d39fd 100644 --- a/home/nipsy/richese.nix +++ b/home/nipsy/richese.nix @@ -4,8 +4,4 @@ common/core common/optional/desktops ]; - - services.xscreensaver.settings = { - mode = "blank"; - }; } |