mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
30 lines
601 B
Nix
30 lines
601 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
options = {
|
||
|
services.owncloud-client = {
|
||
|
enable = mkEnableOption "Owncloud Client";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = mkIf config.services.owncloud-client.enable {
|
||
|
systemd.user.services.owncloud-client = {
|
||
|
Unit = {
|
||
|
Description = "Owncloud Client";
|
||
|
After = [ "graphical-session-pre.target" ];
|
||
|
PartOf = [ "graphical-session.target" ];
|
||
|
};
|
||
|
|
||
|
Service = {
|
||
|
ExecStart = "${pkgs.owncloud-client}/bin/owncloud";
|
||
|
};
|
||
|
|
||
|
Install = {
|
||
|
WantedBy = [ "graphical-session.target" ];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|