11 lines
178 B
Nix
11 lines
178 B
Nix
{ config, username, ... }:
|
|
|
|
{
|
|
programs.home-manager.enable = true;
|
|
home = {
|
|
inherit username;
|
|
homeDirectory = "/home/${username}";
|
|
stateVersion = "22.11";
|
|
};
|
|
}
|