3
0
Fork 0
forked from mirrors/nixpkgs

nixos/winbox: add missing environment.systemPackages

This commit is contained in:
Pol Dellaiera 2023-12-16 10:09:59 +01:00
parent 3dda6d5ed5
commit 8da07755de
No known key found for this signature in database
GPG key ID: D476DFE9C67467CA

View file

@ -18,6 +18,7 @@ in
};
config = lib.mkIf cfg.enable {
environment.systemPackages = [ cfg.package ];
networking.firewall.allowedUDPPorts = lib.optionals cfg.openFirewall [ 5678 ];
};
}