From d12fd443bbb730e203e43c7773b1c6e3cc178c81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Czy=C5=BC?= Date: Sat, 20 Apr 2024 15:37:06 +0200 Subject: [PATCH] thor dwm sync --- hosts/thor/gui.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/hosts/thor/gui.nix b/hosts/thor/gui.nix index 87a0f59..0da2b82 100644 --- a/hosts/thor/gui.nix +++ b/hosts/thor/gui.nix @@ -24,6 +24,9 @@ windowManager = { dwm = { enable = true; + package = pkgs.dwm.overrideAttrs { + src = /home/mike/Projects/dwm; + }; }; }; @@ -33,4 +36,13 @@ }; }; }; + + environment.systemPackages = (with pkgs; [ + autorandr + xorg.xrandr + ]); + + services.autorandr = { + enable = true; + }; }