progress?
This commit is contained in:
parent
7d6dd5e9e4
commit
86090fa40e
4 changed files with 28 additions and 9 deletions
13
modules/factory/users/user.nix
Normal file
13
modules/factory/users/user.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
config.flake.factory.user = username: {
|
||||
nixos."${username}" = {pkgs, ...}: {
|
||||
users.users."${username}" = {
|
||||
isNormalUser = true;
|
||||
name = "${username}";
|
||||
};
|
||||
extraGroups = ["wheel"];
|
||||
|
||||
shell = pkgs.nushell;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue