Update nixpkgs-unstable

This commit is contained in:
Natsu Kagami 2023-08-09 09:28:47 +02:00
parent 25a09b62b4
commit f03b88d591
Signed by: nki
GPG key ID: 55A032EB38B49ADB
2 changed files with 4 additions and 4 deletions

View file

@ -187,7 +187,7 @@
cloud.services.outline = {
enable = true;
package = pkgs.unstable.outline.overrideAttrs (attrs: {
patches = attrs.patches ++ [ ../modules/cloud/outline/dtth-wiki.patch ];
patches = if builtins.hasAttr "patches" attrs then attrs.patches else [ ] ++ [ ../modules/cloud/outline/dtth-wiki.patch ];
});
databaseUrl = "postgres://outline:outline@localhost/outline?sslmode=disable";
sequelizeArguments = "--env=production-ssl-disabled";