summary refs log tree commit diff
path: root/modules/work/wireguard.nix
blob: a025e6d41201bc4d01404af5ff630fd1f5eb032e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, ... }:

{
  age.secrets."wg_hexa.conf" = {
    file = ../../secrets/wg_hexa.conf.age;
  };

  networking.wg-quick.interfaces."wg_hexa" = {
    autostart = false; # no need to start the interface during boot.
    configFile = config.age.secrets."wg_hexa.conf".path;
  };
}