mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 18:16:13 +01:00
ac5403501f
Signed-off-by: magic_rb <magic_rb@redalder.org>
18 lines
244 B
Nix
18 lines
244 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
inputs',
|
|
secret,
|
|
...
|
|
}: {
|
|
networking = {
|
|
nat.enable = true;
|
|
nat.externalInterface = "enp3s0";
|
|
|
|
hostName = "heater";
|
|
useDHCP = false;
|
|
interfaces.enp3s0.useDHCP = true;
|
|
hostId = "3457b383";
|
|
};
|
|
}
|