10 lines
238 B
Nix
Executable file
10 lines
238 B
Nix
Executable file
{attrs, ...}: {
|
|
programs.home-manager.enable = true;
|
|
home = {
|
|
inherit (attrs) username;
|
|
stateVersion = "22.11";
|
|
homeDirectory = "/home/" + attrs.username;
|
|
};
|
|
imports = [./shared/programs/shell];
|
|
xdg.enable = true;
|
|
}
|