mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2024-11-22 03:41:26 +00:00
try another fix
This commit is contained in:
parent
e8611fd55d
commit
4bead8f066
|
@ -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);
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue