fix nm & upgrade

This commit is contained in:
2025-09-30 16:25:43 +02:00
parent 84ee3b6b12
commit 17f13b141e
7 changed files with 69 additions and 62 deletions

View File

@@ -0,0 +1,17 @@
{ pkgs, ... }:
{
systemd.user.services.nextcloud = {
description = "Nextcloud Desktop Client";
after = [ "graphical-session.target" ]; # started nach der grafischen Sitzung
serviceConfig = {
ExecStart = "${pkgs.nextcloud}/bin/nextcloud";
Restart = "on-failure";
Environment = ''
MOZ_ENABLE_WAYLAND=1
GDK_BACKEND=wayland
'';
};
wantedBy = [ "default.target" ];
};
}