enable nextcloud-client with the home-manager service

This commit is contained in:
Andreas Zweili 2021-11-25 22:46:46 +01:00
parent 5aa02bd58d
commit 6f4e2e6eb2
1 changed files with 4 additions and 1 deletions

View File

@ -7,7 +7,6 @@
nixpkgs.config.allowUnfree = true;
home.packages = with pkgs; [
keeweb
nextcloud-client
signal-desktop
tdesktop
vscode
@ -20,6 +19,10 @@
home.file.".xprofile".source = ./desktop/xprofile;
home.file.".config/terminator".source = ./desktop/terminator;
services.nextcloud-client = {
enable = true;
startInBackground = true;
};
services.network-manager-applet.enable = true;