19 lines
301 B
Nix
19 lines
301 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
users.groups.remote = {};
|
|
|
|
users.users = {
|
|
in5ar = {
|
|
isNormalUser = true;
|
|
description = "IN5-AR";
|
|
extraGroups = [ "wheel" ];
|
|
shell = pkgs.fish;
|
|
};
|
|
maria = {
|
|
isNormalUser = true;
|
|
description = "Maria Arusu";
|
|
extraGroups = [ "wheel" "remote" ];
|
|
};
|
|
};
|
|
}
|