10 lines
212 B
Nix
10 lines
212 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
services.cron.enable = false;
|
|
security.pki.certificateFiles = [
|
|
config.sops.secrets."certs/proxy".path
|
|
];
|
|
networking.dhcpcd.extraConfig = "noarp";
|
|
system.stateVersion = "21.05";
|
|
}
|