dotfiles/modules/home-manager/nextcloud.nix
2024-09-15 11:57:16 +02:00

10 lines
119 B
Nix

{
config,
pkgs,
...
}: {
services.nextcloud-client = {
enable = true;
startInBackground = true;
};
}