15 lines
242 B
Nix
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"];
|
|
};
|
|
};
|
|
}
|