dotfiles/nixos/roles/server.nix

17 lines
350 B
Nix
Raw Normal View History

2018-03-11 19:21:08 +01:00
{
2020-05-21 17:39:38 +02:00
documentation.nixos.enable = false;
services.sshguard.enable = true;
2020-05-21 17:39:38 +02:00
programs.mosh.enable = true;
2018-03-11 19:21:08 +01:00
environment.noXlibs = true;
2021-05-29 18:05:31 +02:00
networking.firewall.logRefusedConnections =
false; # Silence logging of scanners and knockers
2022-04-16 10:44:45 +02:00
2021-01-02 20:48:45 +01:00
# TODO: upstream with noXlibs
2021-05-29 18:05:31 +02:00
nixpkgs.overlays = [
(self: super: {
2022-04-16 10:44:45 +02:00
libdecor = null;
2021-05-29 18:05:31 +02:00
})
];
2018-03-11 19:21:08 +01:00
}