networking.nix 306 B

12345678910111213141516
  1. { config, pkgs, ... }:
  2. let
  3. hosts = import ../../config/hosts.nix;
  4. in
  5. {
  6. environment.systemPackages = with pkgs; [
  7. protonvpn-gui
  8. wireguard-tools
  9. ];
  10. networking.hostName = hosts.nixstation.hostname;
  11. networking.networkmanager.enable = true;
  12. networking.firewall.checkReversePath = false;
  13. }