nixos/modules/home/home.nix

11 lines
141 B
Nix

{
username,
...
}:
{
home = {
username = "${username}";
homeDirectory = "/home/${username}";
stateVersion = "25.11";
};
}