cfg/mod/desktop/security.nix

14 lines
168 B
Nix

{
config,
lib,
...
}:
let
cfg = config.hd.desktop.security;
inherit (lib) mkIf;
in
{
config = mkIf cfg.enable {
programs.seahorse.enable = true;
};
}