cfg/desktop/security.nix
2025-07-14 16:36:10 +02:00

16 lines
240 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 = { };
};
}