11 lines
141 B
Nix
11 lines
141 B
Nix
{
|
|
hostName,
|
|
...
|
|
}:
|
|
{
|
|
networking = {
|
|
hostName = "${hostName}";
|
|
networkmanager.enable = true;
|
|
firewall.enable = true;
|
|
};
|
|
}
|