hosts/base/defaults.nix
fruchti d2daab08a1 Make necessary changes for 23.05
- Explicitly enable fish
- No longer use OpenSSL 1.1 for BURP (decryption now seems to work fine
  with current OpenSSL)
- Move sshd settings to `settings`
2023-06-20 21:51:15 +02:00

22 lines
526 B
Nix

{ lib, ... }:
{
config = lib.mkDefault {
i18n.defaultLocale = "en_GB.UTF-8";
console.keyMap = "us";
services.xserver.layout = "us-fruchti";
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
KbdInteractiveAuthentication = false;
};
};
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
};
}