feat(keycloak): add, broken

This commit is contained in:
Kat Inskip 2024-03-13 15:21:08 -07:00
parent e63304937d
commit 7ff72a29ab
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
6 changed files with 223 additions and 0 deletions

View file

@ -0,0 +1,8 @@
_: {
arch = "x86_64";
type = "NixOS";
modules = [
./nixos.nix
];
access.tailscale.enable = true;
}

View file

@ -0,0 +1,25 @@
{meta, ...}: {
imports = let
inherit (meta) nixos;
in [
#nixos.sops
nixos.base
nixos.reisen-ct
nixos.keycloak
];
#sops.defaultSopsFile = ./secrets.yaml;
systemd.network.networks.eth0 = {
name = "eth0";
matchConfig = {
MACAddress = "BC:24:11:C4:66:AC";
Type = "ether";
};
address = ["10.1.1.48/24"];
gateway = ["10.1.1.1"];
DHCP = "no";
};
system.stateVersion = "23.11";
}