1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00
nixos/users/ellmau/nextcloud.nix
Stefan Ellmauthaler 9db55ae17f HOME-MNGR reorganisation of home manager
Resolves #2

Signed-off-by: Stefan Ellmauthaler <stefan.ellmauthaler@tu-dresden.de>
2021-11-12 12:45:07 +01:00

10 lines
150 B
Nix

{ pkgs, ... }:
{
home-manager.users.ellmau = {
services.nextcloud-client = {
enable = true;
startInBackground = true;
};
};
}