1
Fork 0
satellite/modules/users.nix
2021-11-21 14:34:07 +02:00

14 lines
269 B
Nix

{ pkgs, ... }:
with import ../secrets.nix; {
users = {
mutableUsers = false;
users.adrielus = {
inherit hashedPassword;
extraGroups = [ "wheel" "networkmanager" "lp" "docker" ];
isNormalUser = true;
# shell = pkgs.fish;
};
};
}