this repo has no description
1
fork

Configure Feed

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

desktop-apps: replace owncloud with opencloud

+19 -1
+19 -1
modules/programs/desktop-apps.nix
··· 1 1 { 2 2 delib, 3 3 pkgs, 4 + homeConfig, 4 5 ... 5 6 }: 6 7 delib.module { ··· 32 33 lutris 33 34 # mixxx 34 35 obsidian 36 + opencloud-desktop 35 37 oversteer 36 38 p7zip 37 39 picard ··· 46 48 temurin-bin-17 47 49 ]; 48 50 }) 51 + protonup-qt 49 52 qbittorrent 50 53 qimgv 51 54 slack ··· 57 60 yubioath-flutter 58 61 ]; 59 62 60 - services.owncloud-client.enable = true; 63 + systemd.user.services.opencloud-client = { 64 + Unit = { 65 + Description = "OpenCloud Client"; 66 + After = ["graphical-session.target"]; 67 + PartOf = ["graphical-session.target"]; 68 + }; 69 + 70 + Service = { 71 + Environment = ["PATH=${homeConfig.home.profileDirectory}/bin"]; 72 + ExecStart = "${pkgs.opencloud-desktop}/bin/opencloud"; 73 + }; 74 + 75 + Install = { 76 + WantedBy = ["graphical-session.target"]; 77 + }; 78 + }; 61 79 }; 62 80 }