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