hosts/base/defaults.nix

20 lines
478 B
Nix
Raw Normal View History

{ lib, ... }:
{
config = lib.mkDefault {
i18n.defaultLocale = "en_GB.UTF-8";
2023-03-03 15:35:08 +01:00
console.keyMap = "us";
services.xserver.layout = "us-fruchti";
services.openssh = {
enable = true;
passwordAuthentication = false;
kbdInteractiveAuthentication = false;
};
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
};
}