10 lines
173 B
Nix
10 lines
173 B
Nix
{ user, repoPath, ... }:
|
|
{
|
|
programs.home-manager.enable = true;
|
|
home = {
|
|
stateVersion = "24.05";
|
|
username = "${user}";
|
|
homeDirectory = "${repoPath}";
|
|
};
|
|
}
|