From 9d2e54547cc947f68611c809951c5d01098d36d2 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Wed, 2 Dec 2020 10:19:54 +0100 Subject: [PATCH] Fix home-manager not running for user --- modules/zsh.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/modules/zsh.nix b/modules/zsh.nix index 13b48f91..abc8f7f1 100644 --- a/modules/zsh.nix +++ b/modules/zsh.nix @@ -51,10 +51,8 @@ }); in lib.mkIf config.chvp.zsh.enable { - chvp.zfs.systemLinks = [ - { path = "/home/charlotte/.local/share/autojump"; type = "cache"; } - { path = "/root/.local/share/autojump"; type = "cache"; } - ]; + chvp.zfs.systemLinks = [ { path = "/root/.local/share/autojump"; type = "cache"; } ]; + chvp.zfs.homeLinks = [ { path = ".local/share/autojump"; type = "cache"; } ]; home-manager.users.charlotte = { ... }: (base "/home/charlotte"); home-manager.users.root = { ... }: (base "/root"); };