about summary refs log tree commit diff
path: root/machines/profpatsch/legosi.nix
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-02-09 01:00:09 +0100
committersternenseemann <sternenseemann@systemli.org>2021-02-13 12:27:27 +0100
commite6805d46f31e8228ad590775c7967bceea47fe46 (patch)
treea7e88dafa2691e274f1cf481a737a9cda8c24838 /machines/profpatsch/legosi.nix
parent5b73fbf6989b48e5c4f35f671338d880acece2d0 (diff)
modules/user/profpatsch: adjust naming scheme
The general consensus seems to be to use

    vuizvui.user.<username>.<category>.<module name>

instead of

    vuizvui.<category>.<user name>.<module name>

Things done to test this change:

* Checked build of machines.profpatsch.legosi.build
* Checked evaluation of machines.profpatsch.shiki.build
Diffstat (limited to 'machines/profpatsch/legosi.nix')
-rw-r--r--machines/profpatsch/legosi.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/machines/profpatsch/legosi.nix b/machines/profpatsch/legosi.nix
index e4edc660..b388a83c 100644
--- a/machines/profpatsch/legosi.nix
+++ b/machines/profpatsch/legosi.nix
@@ -113,7 +113,7 @@ in {
       root.openssh.authorizedKeys.keys = [ myKey ];
     };
 
-    vuizvui.programs.profpatsch.weechat = {
+    vuizvui.user.profpatsch.programs.weechat = {
       enable = true;
       authorizedKeys = [ myKey ];
       # redirect the bitlbee unix socket to a fake domain
@@ -121,12 +121,12 @@ in {
       wrapExecStart = [
         "${pkgs.ip2unix}/bin/ip2unix"
         "-r"
-        "addr=1.2.3.4,port=6667,path=${config.vuizvui.services.profpatsch.bitlbee.socketFile}"
+        "addr=1.2.3.4,port=6667,path=${config.vuizvui.user.profpatsch.services.bitlbee.socketFile}"
       ];
     };
     users.users.weechat.extraGroups = [ "bitlbee" ];
 
-    vuizvui.services.profpatsch.bitlbee = {
+    vuizvui.user.profpatsch.services.bitlbee = {
        enable = true;
     };