gnome keyring

This commit is contained in:
Reid 2024-05-15 17:38:13 -07:00
parent 7165ca9f70
commit 7e9e65c4c8
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ lib, config, pkgs, ... }:
with lib;
let
cfg = config.modules.desktop.gnome-keyring;
in {
options.modules.desktop.gnome-keyring = {
enable = mkEnableOption "Enable gnome-keyring, a lightweight keyring with git, gpg, and ssh integration";
};
config = mkIf cfg.enable {
services.gnome.gnome-keyring.enable = true;
};
}