feat: nextcloud

This commit is contained in:
s-prechtl 2024-09-15 11:52:31 +02:00
parent 268179539b
commit 95f31e1d7a
3 changed files with 10 additions and 0 deletions

View file

@ -128,6 +128,7 @@
spotify
pass
gnupg
nextcloud-client
blueman
pinentry-qt
fastfetch

View file

@ -9,6 +9,7 @@
../../modules/home-manager/wofi.nix
../../modules/home-manager/waybar.nix
../../modules/home-manager/alacritty.nix
../../modules/home-manager/nextcloud.nix
../../modules/home-manager/zsh.nix
];
home.username = "sprechtl";

View file

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