home: move around stuff

This commit is contained in:
Simon Gardling 2025-04-07 20:52:36 -04:00
parent d13ba86697
commit 8d59f140cd
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D
2 changed files with 2 additions and 3 deletions

View File

@ -43,7 +43,6 @@
}@inputs:
let
username = "primary";
homeDirectory = "/home/${username}";
hostname = nixpkgs.lib.strings.removeSuffix "\n" (builtins.readFile /etc/hostname);
pkgs = import (
@ -71,7 +70,6 @@
inherit
inputs
username
homeDirectory
;
};

View File

@ -59,7 +59,8 @@ in
# home-manager stuff
home = {
inherit username homeDirectory;
inherit username;
homeDirectory = "/home/${username}";
};
}
)