summaryrefslogtreecommitdiff
path: root/sys/ns/ptr/static-prefix-v6/default.nix
blob: 7688b9751a613bd8007bbc41573daa740f2edf5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{config, ...}: let
  inherit (config.local) nets;
in {
  imports = [
    ./serial.nix
  ];

  config = {
    localNS = {
      enable = true;
      ptrNet.v6 = "static-prefix";
    };
  };
}