Files
TheaninovOS/modules/nixos/usecases/development/angular.nix
2024-11-01 15:59:32 +01:00

20 lines
304 B
Nix

{ config, lib, ... }:
with lib;
let
cfg = config.usecases.development.angular;
in
{
options.usecases.development.angular = {
enable = mkEnableOption "Enable Angular develompent";
};
config = mkIf cfg.enable {
networking.firewall.allowedTCPPorts = [
3000
8100
];
};
}