Compare commits

...

2 commits

3 changed files with 4 additions and 0 deletions

View file

@ -49,6 +49,7 @@ in
services.owncloud-client.package = pkgs.owncloud-client.overrideAttrs (attrs: { services.owncloud-client.package = pkgs.owncloud-client.overrideAttrs (attrs: {
buildInputs = attrs.buildInputs ++ [ pkgs.qt6.qtwayland ]; buildInputs = attrs.buildInputs ++ [ pkgs.qt6.qtwayland ];
}); });
systemd.user.services.owncloud-client.Unit.After = [ "graphical-session.target" ];
# UDisks automounter # UDisks automounter
services.udiskie.enable = true; services.udiskie.enable = true;

View file

@ -107,6 +107,7 @@ with lib;
latitude = "46.31"; latitude = "46.31";
longitude = "6.38"; longitude = "6.38";
}; };
systemd.user.services.wlsunset.Unit.After = "graphical-session.target";
# Notification system # Notification system

View file

@ -86,6 +86,8 @@ in
Service.Slice = "session.slice"; Service.Slice = "session.slice";
Service.Type = "notify"; Service.Type = "notify";
Service.ExecStart = "${lib.getExe pkgs.xwayland-satellite} ${xwayland-display}"; Service.ExecStart = "${lib.getExe pkgs.xwayland-satellite} ${xwayland-display}";
Service.ExecStartPost = [ "systemctl --user set-environment DISPLAY=${xwayland-display}" ];
Service.ExecStopPre = [ "systemctl --user unset-environment" ];
}; };
programs.niri.settings = { programs.niri.settings = {