diff --git a/modules/adguard.nix b/modules/adguard.nix index b659d35..870871b 100644 --- a/modules/adguard.nix +++ b/modules/adguard.nix @@ -10,6 +10,7 @@ in services.adguardhome = { enable = true; settings = { + schema_version = 20; users = [ { name = "admin"; diff --git a/modules/github-runner.nix b/modules/github-runner.nix index fb1aee8..1c38d61 100644 --- a/modules/github-runner.nix +++ b/modules/github-runner.nix @@ -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" ]; }; diff --git a/modules/nextcloud.nix b/modules/nextcloud.nix index 39b963f..490bdc8 100644 --- a/modules/nextcloud.nix +++ b/modules/nextcloud.nix @@ -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 = [ diff --git a/secrets/github-runner-pw.age b/secrets/github-runner-pw.age index 793ffa1..a59a99e 100644 Binary files a/secrets/github-runner-pw.age and b/secrets/github-runner-pw.age differ