nix/profiles/sysadmin.nix
Ryan Lahfa 4fbfa50b10 profiles/sysadmin: do not log refused connections
Signed-off-by: Ryan Lahfa <federez-infra@lahfa.xyz>
2024-02-14 20:40:38 +01:00

13 lines
314 B
Nix

{ pkgs, ... }: {
users.users.root.openssh.authorizedKeys.keyFiles = [
../pubkeys/raito.keys
../pubkeys/bensmrs.keys
];
users.motd = (builtins.readFile ./federez.motd);
networking.firewall.logRefusedConnections = false;
environment.systemPackages = [
pkgs.htop
pkgs.kitty.terminfo
];
}