gutterman: use static ip

This commit is contained in:
wo2wz 2025-12-21 15:04:18 -05:00
parent 5e43f817a4
commit f338602ae3

View file

@ -19,6 +19,20 @@
../../modules/nixos/system/minimal.nix
];
networking = {
useDHCP = false;
interfaces.enp0s20f0u1.ipv4.addresses = [{
# ip leak
address = "192.168.2.129";
prefixLength = 24;
}];
defaultGateway = "192.168.2.1";
nameservers = [
"192.168.2.19"
"1.1.1.1"
];
};
environment.systemPackages = [
pkgs.btop
pkgs.steamcmd