aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortdback <tyler@tdback.net>2025-02-02 21:38:06 -0500
committertdback <tyler@tdback.net>2025-02-02 21:38:06 -0500
commite4d8a7abd041257709cd662c0d032c14fffdf816 (patch)
treedd25404c348e511236f78a162caedcd52c83f079
parent2a89ad82628d9f16eb81db848c5757ffae1fe04f (diff)
xorg: ensure xmonad-contrib is available on the system
-rw-r--r--modules/profiles/xorg/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/profiles/xorg/default.nix b/modules/profiles/xorg/default.nix
index 46c2777..aff57e9 100644
--- a/modules/profiles/xorg/default.nix
+++ b/modules/profiles/xorg/default.nix
@@ -21,7 +21,10 @@
enable = true;
xkb.layout = "us";
displayManager.lightdm.enable = true;
- windowManager.xmonad.enable = true;
+ windowManager.xmonad = {
+ enable = true;
+ enableContribAndExtras = true;
+ };
};
security.rtkit.enable = true;