14 lines
341 B
Nix
14 lines
341 B
Nix
{ secretsDir, inputs, ... }:
|
||
{
|
||
users.users.me = {
|
||
isNormalUser = true;
|
||
#passwordFile = "${secretsDir}/me-pwd";
|
||
password = "changeme";
|
||
extraGroups = [ "networkmanager" "wheel" "libvirtd" ]; # Enable ‘sudo’ for the user.
|
||
|
||
};
|
||
|
||
#home-manager._module.args = { inherit inputs; };
|
||
home-manager.users.me = import ./home.nix;
|
||
}
|