mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 03:26:17 +00:00
15 lines
277 B
Nix
15 lines
277 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 = [ 8100 ]; };
|
|
}
|