From 86fc8bee85b2e9620cca934872871715065a7b71 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Tue, 30 Apr 2024 09:01:46 -0500 Subject: [PATCH] Add static IP for Ceph --- hosts/myself/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/myself/default.nix b/hosts/myself/default.nix index 113ec8b..f4acb5c 100644 --- a/hosts/myself/default.nix +++ b/hosts/myself/default.nix @@ -35,6 +35,12 @@ prefixLength = 16; } ]; }; + interfaces.enp39s0 = { + ipv4.addresses = [ { + address = "10.201.1.1"; + prefixLength = 24; + } ]; + }; nameservers = [ "10.42.1.5" ];