diff options
author | sefidel <contact@sefidel.net> | 2023-11-11 18:01:15 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-11-11 18:05:19 +0900 |
commit | 96624d93ab65514dd392b8f14cf6ea1ba97c6442 (patch) | |
tree | 0f564daea6f8b16678d7eb3feef42ed5be14111f /nixos | |
parent | 7b36b2aaf30948b269fbe604b899c725e4322091 (diff) | |
download | nixrc-96624d93ab65514dd392b8f14cf6ea1ba97c6442.tar.gz nixrc-96624d93ab65514dd392b8f14cf6ea1ba97c6442.zip |
fix(nixos/{alpha, haruka}): fix extraSessionCommands not being executed
This commit removes sway from system programs, as it conflicts with the one defined in home-manager configuration.
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/alpha/configuration.nix | 4 | ||||
-rw-r--r-- | nixos/haruka/configuration.nix | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/nixos/alpha/configuration.nix b/nixos/alpha/configuration.nix index f7bc0cc..7ecced7 100644 --- a/nixos/alpha/configuration.nix +++ b/nixos/alpha/configuration.nix @@ -262,8 +262,8 @@ }; programs = { - sway.enable = true; - sway.extraPackages = lib.mkForce [ ]; + # sway.enable = true; + # sway.extraPackages = lib.mkForce [ ]; zsh.enable = true; zsh.enableCompletion = false; diff --git a/nixos/haruka/configuration.nix b/nixos/haruka/configuration.nix index fbcf654..bcb5e22 100644 --- a/nixos/haruka/configuration.nix +++ b/nixos/haruka/configuration.nix @@ -278,8 +278,8 @@ }; programs = { - sway.enable = true; - sway.extraPackages = lib.mkForce [ ]; + # sway.enable = true; + # sway.extraPackages = lib.mkForce [ ]; zsh.enable = true; zsh.enableCompletion = true; |