nix-infra/hosts/tor-relay/configuration.nix
2024-11-20 05:46:39 +01:00

16 lines
208 B
Nix

{ config, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
./tor.nix
];
networking = {
hostName = "tor-relay";
firewall.enable = false;
};
system.stateVersion = "23.05";
}