15 lines
197 B
Nix
15 lines
197 B
Nix
{
|
|
userName,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
../../modules/home-manager/default.nix
|
|
];
|
|
|
|
home = {
|
|
username = "${userName}";
|
|
homeDirectory = "/home/srv";
|
|
stateVersion = "24.11";
|
|
};
|
|
}
|