This commit is contained in:
mjallen18
2026-01-30 23:37:52 -06:00
parent 59268d1da3
commit c83cfcf06b
5 changed files with 18 additions and 14 deletions

7
flake.lock generated
View File

@@ -14,15 +14,16 @@
"uv2nix": "uv2nix" "uv2nix": "uv2nix"
}, },
"locked": { "locked": {
"lastModified": 1769348998, "lastModified": 1769248094,
"narHash": "sha256-nP4gw7bdwYGa+TQEvpMrYrp6/wsGklrC2cmIUjP4HNI=", "narHash": "sha256-9eiLAIUI3rsjqdY32+jQdKB+0VI6Jks0uf0s/UVMVJI=",
"owner": "nix-community", "owner": "nix-community",
"repo": "authentik-nix", "repo": "authentik-nix",
"rev": "eee255ff2ffd90477889740a56ee75cf7020886e", "rev": "1cab906a5cb342a4890ea9e4fe3993c6d438689b",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nix-community", "owner": "nix-community",
"ref": "version/2025.12.1",
"repo": "authentik-nix", "repo": "authentik-nix",
"type": "github" "type": "github"
} }

View File

@@ -48,7 +48,10 @@
nix-vscode-extensions.url = "github:nix-community/nix-vscode-extensions"; nix-vscode-extensions.url = "github:nix-community/nix-vscode-extensions";
authentik-nix.url = "github:nix-community/authentik-nix"; authentik-nix = {
url = "github:nix-community/authentik-nix/version/2025.12.1";
# inputs.nixpkgs.follows = "nixpkgs-stable";
};
nixai.url = "github:olafkfreund/nix-ai-help"; nixai.url = "github:olafkfreund/nix-ai-help";

View File

@@ -6,28 +6,28 @@
"sources": { "sources": {
"linux": { "linux": {
"fetcher": "none", "fetcher": "none",
"version": "6.18.6", "version": "6.18.8",
"hash": "sha256-RySXGXsvaNTb8bwyzG3GacoiD/TA6w3Dmpz/moj5oxs=" "hash": "sha256-N/DF1cJCwdYE6H1I8IeV6GGlqF9yW0yhHQpTjxL/jP8="
}, },
"config": { "config": {
"fetcher": "github", "fetcher": "github",
"owner": "CachyOS", "owner": "CachyOS",
"repo": "linux-cachyos", "repo": "linux-cachyos",
"rev": "fb8c750d869dde6aad11c04c1b2cd311d24bde2c", "rev": "1acd46cdeb2598f0300b6d7141d47edbf63772cc",
"hash": "sha256-svJgugxjC5d7fpPkP2AbzcuiKnUXnI0uzlyq2mjXQFA=" "hash": "sha256-4U/BvhiP1PJcI3bRYkIeNVio71BnkzVrUdTUqzBxjXo="
}, },
"patches": { "patches": {
"fetcher": "github", "fetcher": "github",
"owner": "CachyOS", "owner": "CachyOS",
"repo": "kernel-patches", "repo": "kernel-patches",
"rev": "cec2d1841baae411313742083ef2bc0b29855b4d", "rev": "c17bb53437f0b7aa2199c429eadfc204caa7cd8c",
"hash": "sha256-VV0AMYlSIVYbJNzKymnGGSlBcPoahMxeASbVi+fTtHo=" "hash": "sha256-KvUqpAeRCYTyxM5s+bBmRjfWKtVo6BrewjIXBljx934="
}, },
"zfs": { "zfs": {
"fetcher": "git", "fetcher": "git",
"url": "https://github.com/cachyos/zfs.git", "url": "https://github.com/cachyos/zfs.git",
"rev": "743334913e5a5f60baf287bcc6d8a23515b02ac5", "rev": "4ddaf45ba468c6953a4fcdbfe79795f74fa6e489",
"hash": "sha256-v78Tn1Im9h8Sjd4XACYesPOD+hlUR3Cmg8XjcJXOuwM=" "hash": "sha256-ZYN+l7iaIkC+Lma1QT96iAwHt+rbLEmiHQFgTk8/8B0="
} }
}, },
"variants": { "variants": {

View File

@@ -32,7 +32,7 @@ in
environmentFile = "/run/secrets/jallen-nas/attic-key"; environmentFile = "/run/secrets/jallen-nas/attic-key";
}; };
authentik = { authentik = {
enable = true; enable = false;
configureDb = true; configureDb = true;
port = 9000; port = 9000;
environmentFile = "/run/secrets/jallen-nas/authentik-env"; environmentFile = "/run/secrets/jallen-nas/authentik-env";

View File

@@ -120,6 +120,6 @@
# # Boot # # # # Boot # #
# ################################################### # ###################################################
boot.kernelPackages = pkgs.${namespace}.linuxPackages_cachyos-server-lto-znver4; boot.kernelPackages = pkgs.${namespace}.linuxPackages_cachyos-server-lto;
} }