This commit is contained in:
2024-04-19 21:13:32 +02:00
parent b4af66a305
commit f87e0d9295
3 changed files with 7 additions and 0 deletions

3
.gitmodules vendored Normal file
View File

@@ -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

View File

@@ -14,6 +14,7 @@
unstable.nh unstable.nh
nix-output-monitor nix-output-monitor
nvd nvd
xorg.xrandr
]); ]);
fonts.packages = with pkgs; [ nerdfonts ]; fonts.packages = with pkgs; [ nerdfonts ];

View File

@@ -33,6 +33,9 @@
windowManager = { windowManager = {
dwm = { dwm = {
enable = true; enable = true;
package = pkgs.dwm.overrideAttrs {
src = /home/mike/Projects/dwm;
};
}; };
}; };