Files
loki-nix/home.nix
John Lancaster a6348adef1 working flakes
2024-12-07 19:16:26 +00:00

10 lines
173 B
Nix

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