This commit is contained in:
2026-02-02 11:21:26 +01:00
parent 7a9781e260
commit 95fa504dc8
8 changed files with 80 additions and 37 deletions
+22
View File
@@ -0,0 +1,22 @@
{
config,
pkgs,
lib,
...
}:
{
sops.secrets."authelia/jwtSecretFile" = { };
sops.secrets."authelia/storageEncryptionKeyFile" = { };
services.authelia.instances.main = {
enable = true;
secrets.storageEncryptionKeyFile = config.sops.secrets."authelia/storageEncryptionKeyFile".path;
secrets.jwtSecretFile = config.sops.secrets."authelia/jwtSecretFile".path;
settings = {
theme = "dark";
default_2fa_method = "totp";
log.level = "warning";
server.disable_healthcheck = false;
};
};
}
+3
View File
@@ -23,6 +23,9 @@
eza
fastfetch
rsync
screen
];
}
+2 -2
View File
@@ -21,8 +21,8 @@ in
openFirewall = true;
port = 11434;
home = "/var/lib/ollama";
environmentVariables = {
OLLAMA_CONTEXT_LENGTH="32000";
environmentVariables = {
OLLAMA_CONTEXT_LENGTH = "32000";
};
# Preloaded models
loadModels = [
+3 -3
View File
@@ -5,7 +5,7 @@
...
}:
let
dataLocation = "/lorien/media/"
dataLocation = "/lorien/media/";
in
{
sops.secrets."qbittorrent/interfaceAddress" = {
@@ -48,9 +48,9 @@ in
AnonymousModeEnabled = false;
BTProtocol = "Both";
BandwidthSchedulerEnabled = false;
DefaultSavePath = dataLocation+"Downloads";
DefaultSavePath = dataLocation + "Downloads";
Encryption = 1;
FinishedTorrentExportDirectory =dataLocation+"Downloads/torrents-complete";
FinishedTorrentExportDirectory = dataLocation + "Downloads/torrents-complete";
GlobalDLSpeedLimit = 0;
GlobalMaxRatio = 1.5;
GlobalUPSpeedLimit = 0;