diff options
Diffstat (limited to 'accounts/gkleen@sif')
-rw-r--r-- | accounts/gkleen@sif/default.nix | 10 | ||||
-rw-r--r-- | accounts/gkleen@sif/ssh-hosts.nix | 2 | ||||
-rw-r--r-- | accounts/gkleen@sif/xmonad/xmonad.hs | 2 |
3 files changed, 10 insertions, 4 deletions
diff --git a/accounts/gkleen@sif/default.nix b/accounts/gkleen@sif/default.nix index 252019d6..87cd9e2f 100644 --- a/accounts/gkleen@sif/default.nix +++ b/accounts/gkleen@sif/default.nix | |||
@@ -83,9 +83,8 @@ in { | |||
83 | ]; | 83 | ]; |
84 | 84 | ||
85 | config = { | 85 | config = { |
86 | services.displayManager.defaultSession = "none+xmonad"; | ||
86 | services.xserver = { | 87 | services.xserver = { |
87 | displayManager.defaultSession = "none+xmonad"; | ||
88 | |||
89 | windowManager.session = [{ | 88 | windowManager.session = [{ |
90 | name = "xmonad"; | 89 | name = "xmonad"; |
91 | start = '' | 90 | start = '' |
@@ -98,6 +97,7 @@ in { | |||
98 | home-manager.users.${userName} = { | 97 | home-manager.users.${userName} = { |
99 | imports = [ | 98 | imports = [ |
100 | flakeInputs.nix-index-database.hmModules.nix-index | 99 | flakeInputs.nix-index-database.hmModules.nix-index |
100 | flakeInputs.impermanence.nixosModules.home-manager.impermanence | ||
101 | ]; | 101 | ]; |
102 | 102 | ||
103 | home.stateVersion = "20.09"; | 103 | home.stateVersion = "20.09"; |
@@ -500,6 +500,12 @@ in { | |||
500 | }; | 500 | }; |
501 | 501 | ||
502 | systemd.user = import ./systemd.nix inputs; | 502 | systemd.user = import ./systemd.nix inputs; |
503 | |||
504 | dconf.settings = { | ||
505 | "org/gnome/desktop/interface" = { | ||
506 | color-scheme = "prefer-dark"; | ||
507 | }; | ||
508 | }; | ||
503 | }; | 509 | }; |
504 | }; | 510 | }; |
505 | } | 511 | } |
diff --git a/accounts/gkleen@sif/ssh-hosts.nix b/accounts/gkleen@sif/ssh-hosts.nix index ea714910..ac930614 100644 --- a/accounts/gkleen@sif/ssh-hosts.nix +++ b/accounts/gkleen@sif/ssh-hosts.nix | |||
@@ -422,7 +422,7 @@ | |||
422 | identityFile = "~/.ssh/admin@switch01.yggdrasil"; | 422 | identityFile = "~/.ssh/admin@switch01.yggdrasil"; |
423 | extraOptions = { | 423 | extraOptions = { |
424 | KexAlgorithms = "+diffie-hellman-group1-sha1"; | 424 | KexAlgorithms = "+diffie-hellman-group1-sha1"; |
425 | HostKeyAlgorithms = "+ssh-dss"; | 425 | # HostKeyAlgorithms = "+ssh-dss"; |
426 | Ciphers = "+aes256-cbc"; | 426 | Ciphers = "+aes256-cbc"; |
427 | MACs = "+hmac-sha1"; | 427 | MACs = "+hmac-sha1"; |
428 | }; | 428 | }; |
diff --git a/accounts/gkleen@sif/xmonad/xmonad.hs b/accounts/gkleen@sif/xmonad/xmonad.hs index d7a78a2d..a44d3bb7 100644 --- a/accounts/gkleen@sif/xmonad/xmonad.hs +++ b/accounts/gkleen@sif/xmonad/xmonad.hs | |||
@@ -931,7 +931,7 @@ myKeys' conf host = Map.fromList $ | |||
931 | where | 931 | where |
932 | modm = XMonad.modMask conf | 932 | modm = XMonad.modMask conf |
933 | 933 | ||
934 | brCycle = [0, 1 % 100, 1 % 10, 1 % 4, 1 % 2, 3 % 4, 1] | 934 | brCycle = [0, 1 % 500, 1 % 250, 1 % 100, 1 % 10, 1 % 4, 1 % 2, 3 % 4, 1] |
935 | 935 | ||
936 | powerActWords = ["poweroff", "reboot", "hibernate", "suspend"] | 936 | powerActWords = ["poweroff", "reboot", "hibernate", "suspend"] |
937 | powerActCompl = mkComplFunFromList' xPConfigMonospace powerActWords | 937 | powerActCompl = mkComplFunFromList' xPConfigMonospace powerActWords |