mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 17:31:34 +01:00
11 lines
242 B
Nix
11 lines
242 B
Nix
{ config, lib, ... }:
|
|
{
|
|
options.myConfig.nextcloud.enable = lib.mkEnableOption "";
|
|
|
|
config = lib.mkIf config.myConfig.nextcloud.enable {
|
|
services.nextcloud-client = {
|
|
enable = true;
|
|
startInBackground = true;
|
|
};
|
|
};
|
|
}
|