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

@@ -2,8 +2,8 @@
{
home.packages = with pkgs; [
libsForQt5.dolphin
libsForQt5.dolphin-plugins
kdePackages.dolphin
kdePackages.dolphin-plugins
nautilus
udisks
];

View File

@@ -36,7 +36,6 @@
extraConfig = ''rivertile -view-padding 0 -outer-padding 0 &'';
settings = {
spawn = [
"nextcloud --background"
"/home/elias/.config/helperscripts/startEww.sh"
];
spawn-tagmask = "${all_but_scratch_tag}";

View File

@@ -1,5 +1,5 @@
{ ... }:
{
imports = [ ./ssh-agent ./gpg-agent ./hypridle.nix ];
imports = [ ./ssh-agent ./gpg-agent ./hypridle.nix ./nextcloud.nix ./nextcloud.nix ];
}

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" ];
};
}

View File

@@ -1,5 +1,4 @@
{ lib, stdenv, fetchFromGitHub, sddm, qtgraphicaleffects, qtquickcontrols2
, qtsvg }:
{ lib, stdenv, fetchFromGitHub, sddm, qtgraphs, qtsvg }:
stdenv.mkDerivation {
pname = "catppuccin-sddm";
@@ -12,7 +11,7 @@ stdenv.mkDerivation {
hash = "sha256-0zoJOTFjQq3gm5i3xCRbyk781kB7BqcWWNrrIkWf2Xk=";
};
buildInputs = [ sddm qtgraphicaleffects qtquickcontrols2 qtsvg ];
buildInputs = [ sddm qtgraphs qtsvg ];
dontWrapQtApps = true;