some niri update

This commit is contained in:
twoneis 2024-09-06 21:37:14 +02:00
parent dee9bd7a40
commit 0f2a3b7a13
2 changed files with 3 additions and 3 deletions

View file

@ -68,7 +68,7 @@ in {
default-column-width = { proportion = 0.5; }; default-column-width = { proportion = 0.5; };
gaps = 2; gaps = 4;
struts = { struts = {
top = 2; top = 2;
}; };

View file

@ -2,7 +2,7 @@
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (config) conf; inherit (config) conf;
in mkIf conf.niri.enable { in mkIf conf.niri.enable {
environment.systemPackages = with pkgs; [ xwayland-satellite xwayland ]; environment.systemPackages = with pkgs; [ xwayland-satellite-unstable xwayland ];
systemd.user.services.xwayland-satellite = { systemd.user.services.xwayland-satellite = {
description = "Xwayland outside your Wayland"; description = "Xwayland outside your Wayland";
@ -19,7 +19,7 @@ in mkIf conf.niri.enable {
StandardOutput = "journal"; StandardOutput = "journal";
Restart = "on-failure"; Restart = "on-failure";
RestartSec = "2s"; RestartSec = "1s";
}; };
}; };
} }