fix homes

This commit is contained in:
jopejoe1 2024-04-27 16:45:52 +02:00
parent a12ae68a49
commit 58a5caa772
4 changed files with 55 additions and 52 deletions

View file

@ -7,9 +7,12 @@
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB8oyMpS2hK3gQXyHIIVS6oilgMpemLmfhKKJ6RBMwUh johannes@joens.email"
];
};
home-manager.users.root = import ../. {
inherit pkgs config;
user = config.users.users.root;
home = config.home-manager.users.root;
home-manager.users.root = {
imports = [ ../. ];
home = {
username = config.users.users.jopejoe1.name;
homeDirectory = config.users.users.jopejoe1.home;
stateVersion = config.system.stateVersion;
};
};
}