cfg/desktop/security.nix
2025-07-14 14:45:55 +02:00

18 lines
245 B
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.hd.desktop.security;
inherit (lib) mkEnableOption mkIf;
in
{
options.hd.desktop.security.enable = mkEnableOption "Security";
config = mkIf cfg.enable {
security = {
};
};
}