calcite: add ssh-tpm-agent

This commit is contained in:
xinyangli 2024-03-25 16:26:48 +08:00
parent 26a11e0df0
commit aa230d639f
Signed by: xin
SSH key fingerprint: SHA256:qZ/tzd8lYRtUFSrfBDBMcUqV4GHKxqeqRA3huItgvbk
10 changed files with 136 additions and 29 deletions

10
overlays/add-pkgs.nix Normal file
View file

@ -0,0 +1,10 @@
{ config, pkgs, lib, ... }:
{
nixpkgs.overlays = [
(self: super: {
ssh-tpm-agent =
pkgs.callPackage ./pkgs/ssh-tpm-agent.nix { };
})
];
}