Add nextcloud-client

This commit is contained in:
Pedro Rey Anca 2024-07-09 09:53:44 +02:00
parent a922e8d0df
commit a589e94805
2 changed files with 7 additions and 0 deletions

View file

@ -17,6 +17,7 @@
++ [(import ./hyprland)] # window manager
++ [(import ./kitty.nix)] # terminal
++ [(import ./swaync/swaync.nix)] # notification deamon
++ [(import ./nextcloud.nix)] # nextcloud client
++ [(import ./nvim.nix)] # neovim editor
++ [(import ./packages.nix)] # other packages
++ [(import ./retroarch.nix)]

View file

@ -0,0 +1,6 @@
{...}: {
services.nextcloud-client = {
enable = true;
startInBackground = true;
};
}