aboutsummaryrefslogtreecommitdiff
path: root/home/packages/default.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-10-03 08:34:22 -0700
committerFranck Cuny <franck@fcuny.net>2022-10-03 08:34:22 -0700
commitb8a204989661fb25998d12eab8787e7ebb548867 (patch)
tree6aeb4aed7942485de7b110db6db188045ddf4f31 /home/packages/default.nix
parentfix(home/rust): switch to the latest stable toolchain (diff)
downloadinfra-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 'home/packages/default.nix')
-rw-r--r--home/packages/default.nix13
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);
}