11 lines
182 B
Nix
11 lines
182 B
Nix
{ ... }:
|
|
|
|
{
|
|
networking.hostName = "nixos";
|
|
networking.wireless = { iwd = { enable = true; }; };
|
|
networking.firewall = {
|
|
enable = true;
|
|
allowedTCPPorts = [ 22 ];
|
|
};
|
|
}
|