working flakes

This commit is contained in:
John Lancaster
2024-12-07 19:16:26 +00:00
parent 92324773ff
commit a6348adef1
5 changed files with 223 additions and 14 deletions

9
home.nix Normal file
View File

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