diff options
author | Alex Auvolat <alex@adnab.me> | 2022-02-25 17:52:17 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-02-25 17:52:17 +0100 |
commit | 6dc92812997e99e12ae5fcab3bda65f056a74edb (patch) | |
tree | de185f8e60062a90ac2a57243dfce2add70bd083 /cluster/prod/site | |
parent | 20ab1f7b8a76a116644668029175100c15a615e2 (diff) | |
download | nixcfg-6dc92812997e99e12ae5fcab3bda65f056a74edb.tar.gz nixcfg-6dc92812997e99e12ae5fcab3bda65f056a74edb.zip |
Add remote LUKS unlocking configuration
Diffstat (limited to 'cluster/prod/site')
-rw-r--r-- | cluster/prod/site/neptune.nix | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/cluster/prod/site/neptune.nix b/cluster/prod/site/neptune.nix index c0eb39e..900ddf0 100644 --- a/cluster/prod/site/neptune.nix +++ b/cluster/prod/site/neptune.nix @@ -1,11 +1,9 @@ { config, pkgs, ... }: { - networking.defaultGateway = { - address = "192.168.1.254"; - interface = "eno1"; - }; - networking.nameservers = [ "192.168.1.254" ]; - deuxfleurs.site_name = "neptune"; + deuxfleurs.lan_default_gateway = "192.168.1.254"; + deuxfleurs.lan_ip_prefix_length = 24; + + networking.nameservers = [ "192.168.1.254" ]; } |