From 5c929290c03bcfbc243062157098458a77c2817e Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sat, 9 Apr 2022 11:31:39 -0700 Subject: add a few more packages for home/ --- home/seahorse/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 home/seahorse/default.nix (limited to 'home/seahorse') diff --git a/home/seahorse/default.nix b/home/seahorse/default.nix new file mode 100644 index 0000000..54688a1 --- /dev/null +++ b/home/seahorse/default.nix @@ -0,0 +1,9 @@ +{ 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 ]); +} -- cgit 1.4.1