1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-02 11:28:32 +02:00
home-manager/modules/services/owncloud-client.nix

40 lines
847 B
Nix
Raw Normal View History

2017-08-26 16:00:55 +02:00
{ config, lib, pkgs, ... }:
with lib;
2022-10-09 10:59:43 +02:00
let
cfg = config.services.owncloud-client;
in {
2017-08-26 16:00:55 +02:00
options = {
2022-10-09 10:59:43 +02:00
services.owncloud-client = {
enable = mkEnableOption "Owncloud Client";
package = mkPackageOption pkgs "owncloud-client" { };
};
2017-08-26 16:00:55 +02:00
};
2022-10-09 10:59:43 +02:00
config = mkIf cfg.enable {
2022-04-24 16:25:54 +02:00
assertions = [
(hm.assertions.assertPlatform "services.owncloud-client" pkgs
platforms.linux)
];
2017-08-26 16:00:55 +02:00
systemd.user.services.owncloud-client = {
Unit = {
Description = "Owncloud Client";
After = [ "graphical-session-pre.target" ];
PartOf = [ "graphical-session.target" ];
};
Service = {
2018-07-29 18:15:50 +02:00
Environment = "PATH=${config.home.profileDirectory}/bin";
2022-10-09 10:59:43 +02:00
ExecStart = "${cfg.package}/bin/owncloud";
2017-08-26 16:00:55 +02:00
};
2020-02-02 00:39:17 +01:00
Install = { WantedBy = [ "graphical-session.target" ]; };
2017-08-26 16:00:55 +02:00
};
};
}