Samuel Shuert | fc05cfb | 2024-03-23 21:37:08 -0400 | [diff] [blame] | 1 | { config, lib, pkgs, ... }: { |
2 | options.chimera.nextcloud.enable = lib.mkEnableOption "Enable Nextcloud Client"; | ||||
3 | config = { | ||||
4 | services.nextcloud-client = lib.mkIf config.chimera.nextcloud.enable { | ||||
5 | enable = true; | ||||
6 | startInBackground = true; | ||||
7 | }; | ||||
8 | home.packages = [ pkgs.nextcloud-client ]; | ||||
9 | }; | ||||
10 | } |