forked from tuxcord/tuxcord.nix
treewide: initial commit
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
users.users =
|
||||
let
|
||||
adminGroups = [
|
||||
"adm"
|
||||
"named"
|
||||
"networkmanager"
|
||||
"nginx"
|
||||
"tuxcord"
|
||||
"wheel"
|
||||
];
|
||||
in
|
||||
{
|
||||
error = {
|
||||
isNormalUser = true;
|
||||
shell = pkgs.fish;
|
||||
extraGroups = adminGroups;
|
||||
};
|
||||
|
||||
javalsai = {
|
||||
isNormalUser = true;
|
||||
shell = pkgs.zsh;
|
||||
extraGroups = adminGroups;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user