fruchti
d2daab08a1
- 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`
22 lines
526 B
Nix
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";
|
|
};
|
|
};
|
|
}
|