2020-04-12 18:57:47 +02:00
|
|
|
{ pkgs, ... }:
|
2020-04-10 13:51:37 +02:00
|
|
|
with import ../secrets.nix; {
|
2020-04-08 18:36:58 +02:00
|
|
|
users = {
|
|
|
|
mutableUsers = false;
|
|
|
|
users.adrielus = {
|
2020-04-10 13:51:37 +02:00
|
|
|
inherit hashedPassword;
|
|
|
|
|
2020-04-08 18:36:58 +02:00
|
|
|
extraGroups = [ "wheel" "networkmanager" ];
|
2020-04-10 13:51:37 +02:00
|
|
|
isNormalUser = true;
|
2020-04-12 18:57:47 +02:00
|
|
|
shell = pkgs.fish;
|
2020-04-08 18:36:58 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|