2023-02-26 19:59:32 +01:00
|
|
|
{ lib, ... }:
|
|
|
|
{
|
2023-03-03 15:26:51 +01:00
|
|
|
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";
|
2023-06-07 08:53:31 +02:00
|
|
|
services.openssh = {
|
|
|
|
enable = true;
|
2023-06-20 21:51:15 +02:00
|
|
|
settings = {
|
|
|
|
PasswordAuthentication = false;
|
|
|
|
KbdInteractiveAuthentication = false;
|
|
|
|
};
|
2023-06-07 08:53:31 +02:00
|
|
|
};
|
2023-02-26 19:59:32 +01:00
|
|
|
|
2023-03-03 15:26:51 +01:00
|
|
|
nix.gc = {
|
|
|
|
automatic = true;
|
|
|
|
dates = "weekly";
|
|
|
|
options = "--delete-older-than 30d";
|
|
|
|
};
|
2023-02-26 19:59:32 +01:00
|
|
|
};
|
|
|
|
}
|