mirror of
https://github.com/RGBCube/ncc
synced 2025-07-29 19:17:45 +00:00
Simplify nextcloud systemd config
This commit is contained in:
parent
f21ce75136
commit
05bdffa0a9
1 changed files with 10 additions and 14 deletions
|
@ -16,23 +16,19 @@ in serverSystemConfiguration {
|
|||
}];
|
||||
};
|
||||
|
||||
systemd.services = {
|
||||
phpfpm-nextcloud.aliases = [ "nextcloud.service" ];
|
||||
systemd.services.nextcloud-setup = {
|
||||
after = [ "postgresql.service" ];
|
||||
requires = [ "postgresql.service" ];
|
||||
|
||||
nextcloud-setup = {
|
||||
after = [ "postgresql.service" ];
|
||||
requires = [ "postgresql.service" ];
|
||||
script = lib.mkAfter ''
|
||||
nextcloud-occ theming:config name "RGBCube's Depot"
|
||||
nextcloud-occ theming:config slogan "RGBCube's storage of insignificant data."
|
||||
|
||||
script = lib.mkAfter ''
|
||||
nextcloud-occ theming:config name "RGBCube's Depot"
|
||||
nextcloud-occ theming:config slogan "RGBCube's storage of insignificant data."
|
||||
nextcloud-occ theming:config color "#000000"
|
||||
nextcloud-occ theming:config background backgroundColor
|
||||
|
||||
nextcloud-occ theming:config color "#000000"
|
||||
nextcloud-occ theming:config background backgroundColor
|
||||
|
||||
nextcloud-occ theming:config logo ${./icon.gif}
|
||||
'';
|
||||
};
|
||||
nextcloud-occ theming:config logo ${./icon.gif}
|
||||
'';
|
||||
};
|
||||
|
||||
services.nextcloud = enabled {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue