/ hosts / syncer / configuration.nix
configuration.nix
 1  { inputs, config, pkgs, lib, modulesPath, hostname, ... }:
 2  
 3  {
 4    imports = [
 5      ../../modules/virtualization/lxc/proxmox-lxc.nix
 6      ../../modules/server/sync/firefox-sync
 7    ];
 8  
 9    home-manager = import ../../home-manager;
10  
11    networking = {
12      hostName = hostname;
13      firewall = {
14        enable = false;
15        allowedTCPPorts = [ 80 443 ];
16    #    allowedUDPPortRanges = [
17    #     { from = 4000; to = 4007; }
18      #    { from = 8000; to = 8010; }
19     #   ];
20      };
21    };
22  }