nixos/machines/Marid/configuration.nix

11 lines
187 B
Nix
Raw Normal View History

2021-11-25 22:03:04 +01:00
{ pkgs, ... }:
{
services.cron.enable = false;
2023-06-17 18:10:50 +02:00
security.pki.certificateFiles = [
./certs/proxy
2023-06-17 18:10:50 +02:00
];
2021-11-25 22:03:04 +01:00
networking.dhcpcd.extraConfig = "noarp";
system.stateVersion = "21.05";
}