about summary refs log tree commit diff
path: root/common-workstation.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 /common-workstation.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 'common-workstation.nix')
-rw-r--r--common-workstation.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/common-workstation.nix b/common-workstation.nix
index 307abb00..c3dd7555 100644
--- a/common-workstation.nix
+++ b/common-workstation.nix
@@ -44,13 +44,13 @@ in {
     ];
   };
 
-  vuizvui.i3.enable = true;
-  vuizvui.slim.enable = true;
-  vuizvui.vlock.enable = true;
-  vuizvui.zsh.enable = true;
+  vuizvui.user.aszlig.services.i3.enable = true;
+  vuizvui.user.aszlig.services.slim.enable = true;
+  vuizvui.user.aszlig.services.vlock.enable = true;
+  vuizvui.user.aszlig.programs.zsh.enable = true;
 
-  vuizvui.git.enable = true;
-  vuizvui.git.config = {
+  vuizvui.user.aszlig.programs.git.enable = true;
+  vuizvui.user.aszlig.programs.git.config = {
     color.ui = "auto";
     merge.tool = "vimdiff3";
     user.email = "aszlig@redmoonstudios.org";