updates for swan

This commit is contained in:
Noah Masur
2026-05-30 14:33:20 +00:00
parent 07a980e937
commit fa307c0f4b
4 changed files with 6 additions and 2 deletions
+3
View File
@@ -33,6 +33,9 @@ rec {
system.stateVersion = "23.05"; system.stateVersion = "23.05";
# Temp: disable while this isn't working
services.automatic-timezoned.enable = false;
# Not sure what's necessary but too afraid to remove anything # Not sure what's necessary but too afraid to remove anything
boot.initrd.availableKernelModules = [ boot.initrd.availableKernelModules = [
"xhci_pci" "xhci_pci"
@@ -791,7 +791,7 @@ in
properties = [ properties = [
{ {
id = "displayName"; id = "displayName";
value = "Jellyseerr"; value = "Seerr";
} }
{ {
id = "links"; id = "links";
@@ -17,7 +17,7 @@ in
services.nextcloud = { services.nextcloud = {
enable = true; enable = true;
package = pkgs.nextcloud32; # Required to specify package = pkgs.nextcloud33; # Required to specify
configureRedis = true; configureRedis = true;
datadir = "/data/nextcloud"; datadir = "/data/nextcloud";
database.createLocally = true; database.createLocally = true;
@@ -45,6 +45,7 @@ in
]; ];
# If password is requested and fails, continue to boot eventually # If password is requested and fails, continue to boot eventually
passwordTimeout = 300; passwordTimeout = 300;
forceImportRoot = false; # Recommended default
}; };
}; };