artemsion: samba, flakpak, palatine-hill: act-runner, samba, nextcloud
Some checks failed
Check Nix flake / Perform Nix flake checks (ubuntu-latest) (push) Waiting to run
Check flake.lock / Check health of `flake.lock` (push) Waiting to run
Check Nix formatting / Perform Nix format checks (push) Waiting to run
Update flakes / createPullRequest (push) Failing after 3h11m57s

- adds happy 17th AO3 skin
- removes zen kernel from artemision
- adds flatpak to artemision
- adds samba client to artemision
- add samba import for palatine-hill
- fix formatting on act-runner
- fix nextcloud pre-generation script to use new image scheme

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
2024-12-04 18:56:39 -05:00
parent c8432ed61b
commit d9a3d31b5b
6 changed files with 466 additions and 30 deletions

View File

@ -17,12 +17,10 @@
systemd.services."nextcloud-pre-generate" = {
requires = [
"docker.service"
"multi-user.target"
"docker-nextcloud.service"
];
after = [
"docker.service"
"multi-user.target"
"docker-nextcloud.service"
];
description = "incremental pre-generation of previews on nextcloud";
serviceConfig = {
@ -31,10 +29,10 @@
Group = "docker";
ExecStart = [
''
${pkgs.bash}/bin/bash -c '${pkgs.docker}/bin/docker ps --format "{{.Names}}" | ${pkgs.gnugrep}/bin/grep -q "^nextcloud-nextcloud-1$"'
${pkgs.bash}/bin/bash -c '${pkgs.docker}/bin/docker ps --format "{{.Names}}" | ${pkgs.gnugrep}/bin/grep -q "^nextcloud$"'
''
''
${pkgs.docker}/bin/docker exec --user www-data nextcloud-nextcloud-1 php occ preview:pre-generate
${pkgs.docker}/bin/docker exec --user www-data nextcloud php occ preview:pre-generate
''
];
};