summaryrefslogtreecommitdiffstats
path: root/nixos/modules
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-01-14 18:54:05 +0000
committerGitHub <noreply@github.com>2021-01-14 18:54:05 +0000
commit183b673b64a8ab9a56b00fa79b0a82c68c93c7cc (patch)
treeee0db500ad309bf656c7b2edf236108f0afe1113 /nixos/modules
parent730ff71234db1d6b6b6d0424c8384ec74525a955 (diff)
parent8a4b39330f80143b313bde8d88b6cc1264b31d18 (diff)
Merge master into staging-next
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/module-list.nix1
-rw-r--r--nixos/modules/services/x11/window-managers/clfswm.nix4
-rw-r--r--nixos/modules/services/x11/window-managers/default.nix1
3 files changed, 4 insertions, 2 deletions
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index 953aeda568f1..a71c804428da 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -956,6 +956,7 @@
./services/x11/urxvtd.nix
./services/x11/window-managers/awesome.nix
./services/x11/window-managers/default.nix
+ ./services/x11/window-managers/clfswm.nix
./services/x11/window-managers/fluxbox.nix
./services/x11/window-managers/icewm.nix
./services/x11/window-managers/bspwm.nix
diff --git a/nixos/modules/services/x11/window-managers/clfswm.nix b/nixos/modules/services/x11/window-managers/clfswm.nix
index 176c1f461271..171660c53ac3 100644
--- a/nixos/modules/services/x11/window-managers/clfswm.nix
+++ b/nixos/modules/services/x11/window-managers/clfswm.nix
@@ -15,10 +15,10 @@ in
services.xserver.windowManager.session = singleton {
name = "clfswm";
start = ''
- ${pkgs.clfswm}/bin/clfswm &
+ ${pkgs.lispPackages.clfswm}/bin/clfswm &
waitPID=$!
'';
};
- environment.systemPackages = [ pkgs.clfswm ];
+ environment.systemPackages = [ pkgs.lispPackages.clfswm ];
};
}
diff --git a/nixos/modules/services/x11/window-managers/default.nix b/nixos/modules/services/x11/window-managers/default.nix
index 87702c58727a..9ca24310e567 100644
--- a/nixos/modules/services/x11/window-managers/default.nix
+++ b/nixos/modules/services/x11/window-managers/default.nix
@@ -13,6 +13,7 @@ in
./berry.nix
./bspwm.nix
./cwm.nix
+ ./clfswm.nix
./dwm.nix
./evilwm.nix
./exwm.nix