try another fix

This commit is contained in:
Inex Code 2024-10-24 22:08:21 +03:00
parent e8611fd55d
commit 4bead8f066
2 changed files with 16 additions and 12 deletions

View file

@ -3,10 +3,19 @@
inputs.nixpkgs-old.url = "nixpkgs/nixos-23.11";
outputs = { self, nixpkgs-old }: {
nixosModules.default = _:
{ imports = [ ./module.nix ./cleanup-module.nix ]; };
configPathsNeeded =
builtins.fromJSON (builtins.readFile ./config-paths-needed.json);
};
outputs = { self, nixpkgs-old }:
let
oldPkgs = import nixpkgs-old {
system = "x86_64-linux"; # Same architecture as above
};
in
{
nixosModules.default = _:
{
imports = [ ./module.nix ./cleanup-module.nix ];
services.nextcloud.package = oldPkgs.nextcloud26;
};
configPathsNeeded =
builtins.fromJSON (builtins.readFile ./config-paths-needed.json);
};
}

View file

@ -1,9 +1,4 @@
{ config, lib, pkgs, ... }:
let
oldPkgs = import nixpkgs-old {
system = "x86_64-linux"; # Same architecture as above
};
in
{
options.selfprivacy.modules.nextcloud = with lib; {
enable = mkOption {
@ -71,7 +66,7 @@ in
};
services.nextcloud = {
enable = true;
package = oldPkgs.nextcloud26;
#package = oldPkgs.nextcloud26;
inherit hostName;
# Use HTTPS for links