nixos-config/overlays/add-pkgs.nix

10 lines
158 B
Nix
Raw Normal View History

2024-03-25 08:26:48 +00:00
{ config, pkgs, lib, ... }:
{
nixpkgs.overlays = [
(self: super: {
ssh-tpm-agent = pkgs.callPackage ./pkgs/ssh-tpm-agent.nix { };
2024-03-25 08:26:48 +00:00
})
];
}