mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-08 04:38:06 +01:00
15 lines
202 B
Nix
15 lines
202 B
Nix
{ ... }:
|
|
{
|
|
networking = {
|
|
networkmanager.enable = true;
|
|
firewall = {
|
|
allowedTCPPorts = [
|
|
22
|
|
5900
|
|
];
|
|
allowedUDPPorts = [ ];
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|