Nixfiles! :3
0

Configure Feed

Select the types of activity you want to include in your feed.

fudge.


Signed-off-by: MLC Bloeiman <mar@strawmelonjuice.com>

MLC Bloeiman (Jul 12, 2026, 1:07 AM +0200) f4f95a0b b1aa25f1

+4 -4
+4 -4
home/host-specific/Cubchoo.nix
··· 219 219 }; 220 220 221 221 systemd.user.services.owncloud = { 222 - enable = true; 223 222 Service = { 224 223 ExecStart = pkgs.writeShellScript "owncloud-starter" '' 225 - if [ ! -f "${config.xdg.configHome}/.config/services/OwnCloud/.env" ]; then 226 - echo "Missing file : ${config.xdg.configHome}/.config/services/OwnCloud/.env" 224 + if [ ! -f "${config.xdg.configHome}/services/OwnCloud/.env" ]; then 225 + echo "Missing file : ${config.xdg.configHome}/services/OwnCloud/.env" 227 226 exit 1 228 227 fi 229 - cd "${config.xdg.configHome}/.config/services/OwnCloud" && podman compose --env-file ./.env --project-name cloud up 228 + cd "${config.xdg.configHome}/services/OwnCloud" && podman compose --env-file ./.env --project-name cloud up 230 229 ''; 231 230 }; 231 + Install.WantedBy = [ "multi-user.target" ]; 232 232 }; 233 233 234 234 # Define composefile