9 lines
131 B
Nix
9 lines
131 B
Nix
{ config, ... }:
|
|
|
|
let
|
|
firewallcfg = config.machine.firewall;
|
|
in {
|
|
networking = {
|
|
hostName = config.machine.hostName;
|
|
};
|
|
}
|