10 lines
181 B
Nix
10 lines
181 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
nixpkgs.overlays = [
|
|
(self: super: {
|
|
oidc-agent = pkgs.callPackage ./pkgs/oidc-agent { };
|
|
python3 = super.python312;
|
|
})
|
|
];
|
|
}
|