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

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