Files
cnix/modules/nixos/services/security/gnome-keyring/default.nix
2024-10-23 20:11:01 +02:00

16 lines
322 B
Nix

{
config,
lib,
...
}: let
inherit (lib) mkIf mkEnableOption;
cfg = config.nixos.services.security.gnome-keyring;
in {
options = {
nixos.services.security.gnome-keyring.enable = mkEnableOption "Enables gnome-keyring";
};
config = mkIf cfg.enable {
services.gnome.gnome-keyring.enable = true;
};
}