mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-07 20:28:08 +01:00
16 lines
215 B
Nix
16 lines
215 B
Nix
{ ... }:
|
|
{
|
|
networking = {
|
|
networkmanager.enable = true;
|
|
firewall = {
|
|
allowedTCPPorts = [
|
|
22
|
|
5900
|
|
8001
|
|
];
|
|
allowedUDPPorts = [ ];
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|