hosts/base/defaults.nix

22 lines
530 B
Nix

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