nix-infra/hosts/netbox/configuration.nix

16 lines
208 B
Nix
Raw Normal View History

2023-07-10 15:30:51 +02:00
{ config, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
./tor.nix
];
networking = {
hostName = "tor-relay";
firewall.enable = false;
};
system.stateVersion = "23.05";
}