From b8a204989661fb25998d12eab8787e7ebb548867 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Mon, 3 Oct 2022 08:34:22 -0700 Subject: feat(home/packages): install gh-ssh-keys Add a new input to the flake configuration to install `gh-ssh-keys`. --- home/packages/default.nix | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'home/packages') diff --git a/home/packages/default.nix b/home/packages/default.nix index a459995..39798a5 100644 --- a/home/packages/default.nix +++ b/home/packages/default.nix @@ -27,6 +27,15 @@ in }; config.home.packages = with pkgs; lib.mkIf cfg.enable - ([ util-linux jq ripgrep album-to-nas tools.ipconverter ] - ++ cfg.additionalPackages); + ([ + util-linux + jq + ripgrep + + # custom tools + album-to-nas + tools.ipconverter + gh-ssh-keys + ] + ++ cfg.additionalPackages); } -- cgit 1.4.1