Files
nixos-blueprint/hosts/sarien/networking.nix
2025-03-29 23:15:49 +02:00

15 lines
242 B
Nix

let
hosts.sarien = {
hostId = "31150fae";
hostName = "vylxae";
};
in {
networking = {
inherit (hosts.sarien) hostId hostName;
networkmanager.enable = true;
hosts = {
"192.168.1.42" = ["dunamis"];
};
};
}