move nextcloud.nix to a sane location
This commit is contained in:
parent
cde949ac5b
commit
1291d3c9f6
2 changed files with 3 additions and 4 deletions
|
@ -8,7 +8,7 @@
|
||||||
modules.network.nftables modules.nftnat
|
modules.network.nftables modules.nftnat
|
||||||
((import sources.nix-hexchen) {}).profiles.nopersist
|
((import sources.nix-hexchen) {}).profiles.nopersist
|
||||||
|
|
||||||
../../services/nextcloud
|
../../services/nextcloud.nix
|
||||||
../../services/mattermost.nix
|
../../services/mattermost.nix
|
||||||
../../services/thelounge.nix
|
../../services/thelounge.nix
|
||||||
../../services/murmur.nix
|
../../services/murmur.nix
|
||||||
|
|
|
@ -19,7 +19,6 @@
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
((import sources.nix-hexchen) {}).profiles.nopersist
|
((import sources.nix-hexchen) {}).profiles.nopersist
|
||||||
../../modules/nextcloud.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
@ -31,7 +30,7 @@
|
||||||
|
|
||||||
environment.systemPackages = [ pkgs.htop ];
|
environment.systemPackages = [ pkgs.htop ];
|
||||||
|
|
||||||
services.nextcloud-patched = {
|
services.nextcloud = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
# must be set manually; may not be incremented by more than one at
|
# must be set manually; may not be incremented by more than one at
|
||||||
|
@ -49,7 +48,7 @@
|
||||||
dbname = "nextcloud";
|
dbname = "nextcloud";
|
||||||
adminpassFile = "/persist/nextcloud/config/admin_pw";
|
adminpassFile = "/persist/nextcloud/config/admin_pw";
|
||||||
adminuser = "root";
|
adminuser = "root";
|
||||||
defaultapp = "apporder";
|
# defaultapp = "apporder"; # TODO
|
||||||
};
|
};
|
||||||
|
|
||||||
# multiple pools may be doable using services.phpfpm.pools,
|
# multiple pools may be doable using services.phpfpm.pools,
|
Loading…
Reference in a new issue