cfg/desktop/security.nix

17 lines
327 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.pam.services.login.enableGnomeKeyring = true;
services.gnome.gnome-keyring.enable = true;
};
}