fix nm & upgrade
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
imports = [ ./ssh-agent ./gpg-agent ./hypridle.nix ];
|
||||
imports = [ ./ssh-agent ./gpg-agent ./hypridle.nix ./nextcloud.nix ./nextcloud.nix ];
|
||||
}
|
||||
|
||||
17
home/services/nextcloud.nix
Normal file
17
home/services/nextcloud.nix
Normal 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" ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user