sway: Fix log pollution

Fixes #44.
pull/48/head
Simon Bruder 2021-03-02 10:36:41 +01:00
parent ceda178acf
commit 57403a2d52
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
1 changed files with 10 additions and 0 deletions

View File

@ -29,6 +29,16 @@ lib.mkIf nixosConfig.sbruder.gui.enable {
enable = true;
systemdIntegration = true;
# TODO: remove patch once sway > 1.5.1 is released and in nixpkgs
package = pkgs.sway.override {
sway-unwrapped = pkgs.sway-unwrapped.overrideAttrs (o: o // {
patches = lib.singleton (pkgs.fetchpatch {
url = "https://github.com/swaywm/sway/commit/33b64667ae0bfe9af752cb8c850b4f52b34660d2.patch";
sha256 = "05s0xhd4wn98insn0wynr359nq938dmc7aa9rmyn7ira78fw40w8";
});
});
};
config = {
modifier = "Mod4";