mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
31 lines
674 B
Nix
31 lines
674 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
options = {
|
||
|
services.nextcloud-client = {
|
||
|
enable = mkEnableOption "Nextcloud Client";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = mkIf config.services.nextcloud-client.enable {
|
||
|
systemd.user.services.nextcloud-client = {
|
||
|
Unit = {
|
||
|
Description = "Nextcloud Client";
|
||
|
After = [ "graphical-session-pre.target" ];
|
||
|
PartOf = [ "graphical-session.target" ];
|
||
|
};
|
||
|
|
||
|
Service = {
|
||
|
Environment = "PATH=${config.home.profileDirectory}/bin";
|
||
|
ExecStart = "${pkgs.nextcloud-client}/bin/nextcloud";
|
||
|
};
|
||
|
|
||
|
Install = {
|
||
|
WantedBy = [ "graphical-session.target" ];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|