migrate packages to home manager

This commit is contained in:
2023-10-28 15:09:54 +02:00
parent 2384dc11a9
commit 5a9a6ea04f
8 changed files with 142 additions and 22 deletions

View File

@@ -22,7 +22,7 @@
};
homeDirPrefix = if pkgs.stdenv.hostPlatform.isDarwin then "/Users" else "/home";
homeDirectory = "/${homeDirPrefix}/${username}";
homeDirectory = "${homeDirPrefix}/${username}";
home = (import ./home.nix {
inherit homeDirectory pkgs stateVersion system username;