15 lines
278 B
Nix
15 lines
278 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}: let
|
|
cfg = config.marleyos.services.gnome-keyring;
|
|
in {
|
|
options.marleyos.services.gnome-keyring.enable = lib.mkEnableOption "gnome-keyring";
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
services.gnome.gnome-keyring = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|