This commit is contained in:
Reid 2024-05-23 22:10:00 -07:00
parent ae0689bd24
commit f32d23295c
5 changed files with 40 additions and 3 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 password store";
};
config = mkIf cfg.enable {
services.gnome.gnome-keyring.enable = true;
};
}