From f87e0d9295901ffc41dd509a2ac075cc1718a953 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Czy=C5=BC?= Date: Fri, 19 Apr 2024 21:13:32 +0200 Subject: [PATCH] override --- .gitmodules | 3 +++ hosts/common/packages.nix | 1 + hosts/zion/gui.nix | 3 +++ 3 files changed, 7 insertions(+) create mode 100644 .gitmodules diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..aa6ba26 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "home-manager/features/desktop/dwm/dwm"] + path = home-manager/features/desktop/dwm/dwm + url = git@github.com:eRgo35/dwm.git diff --git a/hosts/common/packages.nix b/hosts/common/packages.nix index c84d766..0ef8629 100644 --- a/hosts/common/packages.nix +++ b/hosts/common/packages.nix @@ -14,6 +14,7 @@ unstable.nh nix-output-monitor nvd + xorg.xrandr ]); fonts.packages = with pkgs; [ nerdfonts ]; diff --git a/hosts/zion/gui.nix b/hosts/zion/gui.nix index d88bfce..8eeb2be 100644 --- a/hosts/zion/gui.nix +++ b/hosts/zion/gui.nix @@ -33,6 +33,9 @@ windowManager = { dwm = { enable = true; + package = pkgs.dwm.overrideAttrs { + src = /home/mike/Projects/dwm; + }; }; };