feat: inital public commit
This commit is contained in:
12
host/ark/user.nix
Normal file
12
host/ark/user.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{ pkgs, config, ... }: {
|
||||
|
||||
sops.secrets.admin-password.neededForUsers = true;
|
||||
users.mutableUsers = false;
|
||||
|
||||
users.users.admin = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "wheel" ];
|
||||
hashedPasswordFile = config.sops.secrets.admin-password.path;
|
||||
packages = with pkgs; [ tree vim tmux restic ];
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user