This commit is contained in:
John Lancaster
2024-12-08 12:45:06 -06:00
parent 41bf8a074e
commit fee9256b39
5 changed files with 16 additions and 0 deletions

9
home-manager/default.nix Normal file
View File

@@ -0,0 +1,9 @@
{ user, repoPath, ... }:
{
programs.home-manager.enable = true;
home = {
stateVersion = "24.05";
username = "${user}";
homeDirectory = "${repoPath}";
};
}