cfg/mod/users.nix
Henri Dohmen 973a9e2751 security
2025-05-07 11:16:16 +02:00

23 lines
381 B
Nix

{
pkgs,
lib,
options,
...
}:
{
users.users."hd" = {
description = "Henri";
isNormalUser = true;
createHome = true;
home = "/home/hd";
extraGroups = [
"networkmanager"
"wheel"
];
shell = pkgs.fish;
packages = [ ];
};
home-manager.users."hd" = lib.mkAliasDefinitions options.home;
users.users.root.hashedPassword = "!";
}