Squash merge feat/mail-server into main
This commit is contained in:
parent
14f4243aee
commit
06bcfe62ff
21 changed files with 973 additions and 67 deletions
|
|
@ -1,15 +1,24 @@
|
|||
{ settings, pkgs, ... }:
|
||||
{
|
||||
settings,
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
users.users.${settings.personal.username} = {
|
||||
isNormalUser = true;
|
||||
shell = pkgs.bash; # Actually fish
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
"input"
|
||||
"networkmanager"
|
||||
"docker"
|
||||
"kvm"
|
||||
];
|
||||
extraGroups = (
|
||||
[
|
||||
"wheel"
|
||||
"input"
|
||||
"networkmanager"
|
||||
"docker"
|
||||
"kvm"
|
||||
]
|
||||
++ (if config.programs.gamemode.enable then [ "gamemode" ] else [ ])
|
||||
);
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue