| | |
| | | ../nixos/btrfs.nix |
| | | ../nixos/nginx.nix |
| | | ../nixos/home-assistant.nix |
| | | ../nixos/neovim.nix |
| | | ]; |
| | | |
| | | # Bootloader. |
| | |
| | | |
| | | # List services that you want to enable: |
| | | |
| | | services.nfs.server = { |
| | | enable = true; |
| | | }; |
| | | |
| | | # Open ports in the firewall. |
| | | networking.firewall.allowedTCPPorts = [ 80 443 8123 ]; |
| | | # networking.firewall.allowedUDPPorts = [ ... ]; |
| | | networking.firewall.allowedTCPPorts = [ 80 443 111 2049 4000 4001 4002 20048 ]; |
| | | networking.firewall.allowedUDPPorts = [ 111 2049 4000 4001 4002 20048 ]; |
| | | # Or disable the firewall altogether. |
| | | # networking.firewall.enable = false; |
| | | |