mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
26 lines
650 B
Nix
26 lines
650 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" ]; };
|
|
};
|
|
};
|
|
}
|