diff options
author | Azat Bahawi <azat@bahawi.net> | 2023-11-16 02:16:22 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2023-11-16 02:16:22 +0300 |
commit | 576d4d672d37e490bd5f8dfb4397909600ed68db (patch) | |
tree | 77cc6edfea50f24048f69bf2c54bc6d6f2117e01 /nixosConfigurations/test-headful/default.nix | |
parent | 2023-11-16 (diff) |
2023-11-16
Diffstat (limited to '')
-rw-r--r-- | nixosConfigurations/test-headful/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nixosConfigurations/test-headful/default.nix b/nixosConfigurations/test-headful/default.nix index 25db8c7..a385a2e 100644 --- a/nixosConfigurations/test-headful/default.nix +++ b/nixosConfigurations/test-headful/default.nix @@ -1,8 +1,8 @@ {lib, ...}: with lib; { nixfiles.modules = { - dwm.enable = true; - kde.enable = false; + dwm.enable = false; + kde.enable = true; xmonad.enable = false; }; |