hosts/base/defaults.nix

17 lines
414 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;
services.openssh.passwordAuthentication = false;
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
};
}