common: move zsh enable to users
All checks were successful
flake / build (push) Successful in 6m7s

As it's used a shell, thus user declaration depends on it.

Signed-off-by: Christoph Heiss <christoph@c8h4.io>
This commit is contained in:
Christoph Heiss 2024-11-19 00:11:57 +01:00
parent 7428451531
commit 6edd55704a
Signed by: c8h4
GPG key ID: 73D5E7FDEE3DE49A
2 changed files with 2 additions and 1 deletions

View file

@ -31,7 +31,6 @@
programs.iotop.enable = true;
programs.mtr.enable = true;
programs.traceroute.enable = true;
programs.zsh.enable = true;
security.apparmor.enable = false;
}

View file

@ -21,5 +21,7 @@
];
};
programs.zsh.enable = true;
services.openssh.settings.AllowUsers = [ "christoph" ];
}