add nodejs as dependency for nextcloud app
This commit is contained in:
parent
a732dd60a1
commit
3055451ac9
1 changed files with 7 additions and 2 deletions
|
@ -189,8 +189,13 @@ in
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = [
|
||||||
# Needed for a few apps. Would be nice to avoid having to put that in the environment and instead override https://github.com/NixOS/nixpkgs/blob/261abe8a44a7e8392598d038d2e01f7b33cf26d0/nixos/modules/services/web-apps/nextcloud.nix#L1035
|
# Needed for a few apps. Would be nice to avoid having to put that in the environment and instead override https://github.com/NixOS/nixpkgs/blob/261abe8a44a7e8392598d038d2e01f7b33cf26d0/nixos/modules/services/web-apps/nextcloud.nix#L1035
|
||||||
environment.systemPackages = [ pkgs.ffmpeg ];
|
pkgs.ffmpeg
|
||||||
|
|
||||||
|
# Needed for the recognize app.
|
||||||
|
pkgs.nodejs
|
||||||
|
];
|
||||||
|
|
||||||
services.postgresql.settings = {
|
services.postgresql.settings = {
|
||||||
# From https://pgtune.leopard.in.ua/
|
# From https://pgtune.leopard.in.ua/
|
||||||
|
|
Loading…
Reference in a new issue