summaryrefslogtreecommitdiff
path: root/local.nix
blob: 6cdabdf8a68575e65cb273e21fd2d484572f9be3 (plain)
1
2
3
4
5
6
7
8
9
{ config, lib, pkgs, ... }:

{
  networking.hostName = "xyz";
  networking.wireguard.interfaces.internal = {
    ips = [ "10.0.3.x/24" ];
    privateKey = "xxx";
  };
}