Files
nix-config/home-manager/opensnitch-ui.nix
2025-10-30 21:59:31 +01:00

14 lines
178 B
Nix

{
osConfig,
pkgs,
lib,
inputs,
...
}:
let
cfg = osConfig.custom.services.opensnitch;
in
{
config = lib.mkIf cfg.enable { services.opensnitch-ui.enable = true; };
}