1
Fork 0
satellite/modules/users.nix

14 lines
253 B
Nix

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