diffu/overlays/add-pkgs.nix

11 lines
181 B
Nix
Raw Normal View History

2024-03-25 08:26:48 +00:00
{ config, pkgs, lib, ... }:
{
nixpkgs.overlays = [
(self: super: {
2024-07-09 13:17:10 +00:00
oidc-agent = pkgs.callPackage ./pkgs/oidc-agent { };
python3 = super.python312;
2024-03-25 08:26:48 +00:00
})
];
}