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

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

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

    subnet = "2001:d0c:1::/48";
    gateway = "2001:d0c:1::1";
    driver = "bridge";
  };
}