From 5f1f6f351ef4e36a956858591cb293c5e056860c Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 22 Feb 2025 23:21:04 +0000 Subject: [PATCH] Fix paths in .xinitrc --- nix/modules/home-manager/features/desktop/dwm.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nix/modules/home-manager/features/desktop/dwm.nix b/nix/modules/home-manager/features/desktop/dwm.nix index f427e2a..c74affd 100644 --- a/nix/modules/home-manager/features/desktop/dwm.nix +++ b/nix/modules/home-manager/features/desktop/dwm.nix @@ -14,13 +14,13 @@ with lib; home.file.".xinitrc".text = '' systemctl --user import-environment DISPLAY - ${pkgs.autorandr}/bin/autorandr --change + autorandr --change - ${pkgs.copyq}/bin/copyq & + copyq & systemctl --user start dwm-status & - exec ${pkgs.dwm}/bin/dwm + exec dwm ''; }; }