1
1
Fork 0
nixos/options/custom/programs/seahorse.nix

16 lines
281 B
Nix
Raw Normal View History

{ config, lib, ... }:
with lib;
let
cfg = config.custom.programs.seahorse;
in
{
options.custom.programs.seahorse.enable = mkOption { default = false; };
config = mkIf cfg.enable {
programs.seahorse.enable = true;
services.gnome.gnome-keyring.enable = true;
};
}