mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
10 lines
172 B
Nix
10 lines
172 B
Nix
|
{ pkgs, lib, inputs', secret, ... }:
|
||
|
{
|
||
|
networking = {
|
||
|
hostName = "heater";
|
||
|
useDHCP = false;
|
||
|
interfaces.enp3s0.useDHCP = true;
|
||
|
hostId = "3457b383";
|
||
|
};
|
||
|
}
|