mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
fix(keycloak): hostname option patch
part of a flake update
This commit is contained in:
parent
af760a543a
commit
0bcfd82a60
3 changed files with 35 additions and 23 deletions
11
outputs.nix
11
outputs.nix
|
|
@ -30,13 +30,16 @@
|
|||
# see overlays/builders.nix
|
||||
in
|
||||
pkgs.__withSubBuilders;
|
||||
patchedNixpkgs = pkgs.applyPatches {
|
||||
name = "nixpkgs";
|
||||
src = inputs.nixpkgs;
|
||||
patchedNixpkgs = let
|
||||
patches = [
|
||||
./packages/nixpkgs-keycloak-nullhostname.patch
|
||||
];
|
||||
};
|
||||
patchedNixpkgs = pkgs.applyPatches {
|
||||
name = "nixpkgs";
|
||||
src = inputs.nixpkgs;
|
||||
inherit patches;
|
||||
};
|
||||
in if patches != [] then patchedNixpkgs else pkgs;
|
||||
deploy-rs = let
|
||||
deployLib =
|
||||
inputs.deploy-rs.lib.${system}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue