Fix home-manager not running for user

This commit is contained in:
Charlotte Van Petegem 2020-12-02 10:19:54 +01:00
parent 921055b544
commit 9d2e54547c
No known key found for this signature in database
GPG key ID: 019E764B7184435A

View file

@ -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");
};