make server work with nixos 23.11
This commit is contained in:
@@ -10,6 +10,7 @@ in
|
||||
services.adguardhome = {
|
||||
enable = true;
|
||||
settings = {
|
||||
schema_version = 20;
|
||||
users = [
|
||||
{
|
||||
name = "admin";
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
users.groups.github-actions-runner = {};
|
||||
users.users.github-actions-runner = {
|
||||
isSystemUser = true;
|
||||
passwordFile = config.age.secrets.github-runner-pw.path;
|
||||
hashedPasswordFile = config.age.secrets.github-runner-pw.path;
|
||||
group = "github-actions-runner";
|
||||
extraGroups = [ "docker" ];
|
||||
};
|
||||
|
||||
@@ -64,12 +64,13 @@ in
|
||||
spreed = pkgs.fetchNextcloudApp rec {
|
||||
url = "https://github.com/nextcloud-releases/spreed/releases/download/v17.1.1/spreed-v17.1.1.tar.gz";
|
||||
sha256 = "sha256-LaUG0maatc2YtWQjff7J54vadQ2RE4X6FcW8vFefBh8=";
|
||||
license = "agpl3";
|
||||
};
|
||||
};
|
||||
|
||||
phpOptions = {
|
||||
upload_max_filesize = "5G";
|
||||
post_max_size = "5G";
|
||||
upload_max_filesize = lib.mkForce "5G";
|
||||
post_max_size = lib.mkForce "5G";
|
||||
};
|
||||
extraAppsEnable = true;
|
||||
extraOptions.enabledPreviewProviders = [
|
||||
|
||||
Binary file not shown.
Reference in New Issue
Block a user