15 lines
269 B
Nix
Executable file
15 lines
269 B
Nix
Executable file
{username ? throw "no username provided"}: {...}: {
|
|
imports = [];
|
|
|
|
home.username = username;
|
|
home.homeDirectory = "/home/${username}";
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
home.sessionVariables = {
|
|
EDITOR = "vim";
|
|
};
|
|
|
|
home.stateVersion = "24.11";
|
|
}
|