aboutsummaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2023-03-03 20:36:56 +0100
committerKarel Kočí <cynerd@email.cz>2023-03-03 20:36:56 +0100
commitee316fc4df988e1db3a0efc57ac94355803a6a3f (patch)
tree004af4095455de3f228c95b960dc32c140f6f901 /nixos
parent949dba082d1f7fdfbb05853f0fbfc406778cfaaf (diff)
downloadnixos-personal-ee316fc4df988e1db3a0efc57ac94355803a6a3f.tar.gz
nixos-personal-ee316fc4df988e1db3a0efc57ac94355803a6a3f.tar.bz2
nixos-personal-ee316fc4df988e1db3a0efc57ac94355803a6a3f.zip
nixos/spt-mox2: fix invalid IP
It should have been mox2 not mox.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/machine/spt-mox2.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/machine/spt-mox2.nix b/nixos/machine/spt-mox2.nix
index 32bd9b0..178a780 100644
--- a/nixos/machine/spt-mox2.nix
+++ b/nixos/machine/spt-mox2.nix
@@ -36,7 +36,7 @@ with lib; {
};
interfaces.brlan.ipv4.addresses = [
{
- address = config.cynerd.hosts.spt.mox;
+ address = config.cynerd.hosts.spt.mox2;
prefixLength = 24;
}
];