summary refs log tree commit diff
path: root/modules/foundation/services/default.nix
blob: 8136ce0fcadb2391a28c294af11b8ad1edaf1766 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ ... }:

{
  imports = [
    ./services.nix
    ./networks.nix
  ];

  foundation.networks.foundation-default = {
    enable = true;
    default = true;

    driver = "bridge";
    ipv6 = {
      enable = true;
      subnet = "2001:d0c:1::/48";
      gateway = "2001:d0c:1::1";
    };
  };
}