use master branch

This commit is contained in:
Henry Hiles 2026-01-17 14:21:16 -05:00
commit 477ac02fd0
No known key found for this signature in database
3 changed files with 16 additions and 33 deletions

View file

@ -14,7 +14,7 @@ in
];
imports = [
inputs.lasuite-docs-proxy.nixosModules.default
"${inputs.nixpkgs-lasuite}/nixos/modules/services/web-apps/lasuite-docs.nix"
"${inputs.nixpkgs-master}/nixos/modules/services/web-apps/lasuite-docs.nix"
];
systemd.services = {
@ -54,17 +54,17 @@ in
redis.createLocally = true;
postgresql.createLocally = true;
backendPackage =
inputs.nixpkgs-lasuite.legacyPackages.${pkgs.stdenv.hostPlatform.system}.lasuite-docs.overrideAttrs
inputs.nixpkgs-master.legacyPackages.${pkgs.stdenv.hostPlatform.system}.lasuite-docs.overrideAttrs
(old: {
patches = (old.patches or [ ]) ++ [ ./enable-languages.patch ];
});
frontendPackage =
inputs.nixpkgs-lasuite.legacyPackages.${pkgs.stdenv.hostPlatform.system}.lasuite-docs-frontend.overrideAttrs
inputs.nixpkgs-master.legacyPackages.${pkgs.stdenv.hostPlatform.system}.lasuite-docs-frontend.overrideAttrs
{
NEXT_PUBLIC_PUBLISH_AS_MIT = "false";
};
collaborationServer.package =
inputs.nixpkgs-lasuite.legacyPackages.${pkgs.stdenv.hostPlatform.system}.lasuite-docs-collaboration-server;
inputs.nixpkgs-master.legacyPackages.${pkgs.stdenv.hostPlatform.system}.lasuite-docs-collaboration-server;
bind = "unix:${socket}";
inherit s3Url domain;