20 lines
305 B
Nix
20 lines
305 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib;
|
|
let
|
|
cfg = config.dadada.home.keyring;
|
|
in
|
|
{
|
|
options.dadada.home.keyring = {
|
|
enable = mkEnableOption "Enable keyring config";
|
|
};
|
|
config = mkIf cfg.enable {
|
|
services.gnome-keyring = {
|
|
enable = false;
|
|
components = [ "secrets" ];
|
|
};
|
|
};
|
|
}
|