about summary refs log tree commit diff
path: root/modules/user/aszlig/slim/default.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2015-03-18 03:02:19 +0100
committeraszlig <aszlig@redmoonstudios.org>2015-03-18 03:02:19 +0100
commit19e3e263610406fca8ca1ed6ecf283deb03d8334 (patch)
treed786f4f94a4b0d20a75ba2e7d761392378cfe875 /modules/user/aszlig/slim/default.nix
parente91c0b0c2269a8ab0158863dc1c074daf46001f7 (diff)
modules: Properly namespace module attributes.
So far the modules were still using the old naming scheme of
vuizvui.name where name is the corresponding module name directly
instead of the category.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'modules/user/aszlig/slim/default.nix')
-rw-r--r--modules/user/aszlig/slim/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/user/aszlig/slim/default.nix b/modules/user/aszlig/slim/default.nix
index ca3ce8c6..e5dea220 100644
--- a/modules/user/aszlig/slim/default.nix
+++ b/modules/user/aszlig/slim/default.nix
@@ -3,10 +3,12 @@
 with lib;
 
 let
-  cfg = config.vuizvui.slim;
+  cfg = config.vuizvui.user.aszlig.services.slim;
   randrHeads = config.services.xserver.xrandrHeads;
 in {
-  options.vuizvui.slim.enable = mkEnableOption "Vuizvui SLiM";
+  options.vuizvui.user.aszlig.services.slim = {
+    enable = mkEnableOption "Vuizvui SLiM";
+  };
 
   config.services.xserver.displayManager.slim = mkIf cfg.enable {
     enable = true;