1
Fork 0
satellite/modules/users.nix
2020-10-07 11:11:03 +03:00

14 lines
258 B
Nix

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