mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 12:40:44 +03:00
15 lines
215 B
Nix
15 lines
215 B
Nix
{ inputs, ... }@flakeContext:
|
|
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
networking.firewall = {
|
|
allowedTCPPorts = [ 443 ];
|
|
allowedUDPPorts = [ 443 ];
|
|
};
|
|
environment.systemPackages = with pkgs; [ xray ];
|
|
}
|