about summary refs log tree commit diff
path: root/home/seahorse/default.nix
blob: d37395ee1723757c7c33ee011c682f0d6266b6e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ lib, config, pkgs, ... }:
let cfg = config.my.home.seahorse;
in
{
  options.my.home.seahorse = with lib; {
    enable = mkEnableOption "seahorse configuration";
  };

  config.home.packages = with pkgs; lib.mkIf cfg.enable ([ gnome.seahorse ]);
}