drop nixos-unstable

This commit is contained in:
Rouven Seifert 2024-06-21 18:47:49 +02:00
parent a971e3f100
commit 033e1fad2d
Signed by untrusted user: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
4 changed files with 3 additions and 30 deletions

View file

@ -1,4 +1,4 @@
{ config, nixpkgs-unstable, ... }:
{ config, ... }:
let
domain = "sso.${config.networking.domain}";
in
@ -7,7 +7,7 @@ in
services.keycloak = {
enable = true;
# we use unstable as the release in stable is insecure
package = nixpkgs-unstable.legacyPackages.x86_64-linux.keycloak;
# package = nixpkgs-unstable.legacyPackages.x86_64-linux.keycloak;
settings = {
http-port = 8086;
https-port = 19000;

View file

@ -1,4 +1,4 @@
{ config, pkgs, nixpkgs-unstable, system, ... }:
{ config, pkgs, system, ... }:
let
domain = "auth.${config.networking.domain}";
seedSettings = {
@ -43,15 +43,6 @@ let
};
in
{
# Use portunus from unstable branch until 24.05 is here
disabledModules = [ "services/misc/portunus.nix" ];
imports = [ "${nixpkgs-unstable}/nixos/modules/services/misc/portunus.nix" ];
nixpkgs.overlays = [
(_self: _super: {
inherit (nixpkgs-unstable.legacyPackages.${system}) portunus;
})
];
sops.secrets = {
"portunus/admin-password".owner = config.services.portunus.user;
"portunus/search-password".owner = config.services.portunus.user;