add tpmssh

This commit is contained in:
2024-09-28 19:57:44 +01:00
parent b3b9941c9b
commit c0978d2186
3 changed files with 41 additions and 1 deletions
+5 -1
View File
@@ -19,10 +19,14 @@
outputs = inputs: let
overlays = [
# Add our own local packages
(final: prev: rec {
(final: prev: {
# Make my local packages available as pkgs.mypkgs.<foo>
mypkgs = prev.callPackage ./pkgs {};
})
# more up to date ssh-tpm-agent. Can probably ditch this post-24.05
(final: prev: {
ssh-tpm-agent = (import inputs.nixpkgs-unstable { system = prev.system; }).ssh-tpm-agent;
})
];
in (rec {
profiles = import ./home/profiles.nix;