diff options
author | Franck Cuny <franck@fcuny.net> | 2022-10-03 08:34:22 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-10-03 08:34:22 -0700 |
commit | b8a204989661fb25998d12eab8787e7ebb548867 (patch) | |
tree | 6aeb4aed7942485de7b110db6db188045ddf4f31 /home/packages | |
parent | fix(home/rust): switch to the latest stable toolchain (diff) | |
download | world-b8a204989661fb25998d12eab8787e7ebb548867.tar.gz |
feat(home/packages): install gh-ssh-keys
Add a new input to the flake configuration to install `gh-ssh-keys`.
Diffstat (limited to '')
-rw-r--r-- | home/packages/default.nix | 13 |
1 files changed, 11 insertions, 2 deletions
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); } |