This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
nil/modules/applications/nextcloud.nix

39 lines
1.0 KiB
Nix
Raw Normal View History

2021-12-14 05:24:26 +00:00
{ config, lib, pkgs, ... }:
let
2021-12-16 01:58:52 +00:00
cfg = config.this.application.nextcloud;
2021-12-15 05:27:39 +00:00
graphical = config.this.graphical;
2021-12-14 05:24:26 +00:00
in with lib; {
options = {
2022-03-24 04:00:26 +00:00
this.application.nextcloud.enable = mkOption {
default = graphical.enable;
type = with types; bool;
2021-12-14 05:24:26 +00:00
};
};
2021-12-02 05:05:52 +00:00
2021-12-14 05:24:26 +00:00
config = mkIf cfg.enable {
home-manager.users.james = {
home.packages = with pkgs; [ nextcloud-client ];
systemd.user.services = {
nextcloud = {
Unit = {
2022-03-27 02:03:16 +00:00
Description = "Nextcloud - A slightly more GNU friendly dropbox";
2021-12-14 05:24:26 +00:00
BindsTo = [ "graphical-session.target" ];
Wants = [ "graphical-session-pre.target" ];
After = [ "graphical-session-pre.target" ];
};
Service = {
Type = "simple";
2022-03-27 02:03:16 +00:00
Description = "Nextcloud - A slightly more GNU friendly dropbox";
2021-12-14 05:24:26 +00:00
ExecStart = "${pkgs.nextcloud-client}/bin/nextclient --background";
Restart = "on-failure";
RestartSec = 1;
TimeoutStopSec = 10;
};
2021-12-02 05:05:52 +00:00
};
};
};
};
}