1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-01 02:48:30 +02:00
home-manager/modules/services/nextcloud-client.nix

40 lines
919 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
2021-01-15 11:57:58 +01:00
let
cfg = config.services.nextcloud-client;
in {
options = {
2021-01-15 11:57:58 +01:00
services.nextcloud-client = {
enable = mkEnableOption "Nextcloud Client";
package = mkOption {
type = types.package;
default = pkgs.nextcloud-client;
defaultText = literalExample "pkgs.nextcloud-client";
description = "The package to use for the nextcloud client binary.";
};
};
};
2021-01-15 11:57:58 +01:00
config = mkIf cfg.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";
2021-01-15 11:57:58 +01:00
ExecStart = "${cfg.package}/bin/nextcloud";
};
2020-02-02 00:39:17 +01:00
Install = { WantedBy = [ "graphical-session.target" ]; };
};
};
}