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; + }; }