nixos/hosts/common/optional/dwm.nix

26 lines
663 B
Nix
Raw Normal View History

2024-06-13 14:36:34 +01:00
{ pkgs, ... }:
{
services = {
libinput.enable = true;
xserver = {
2024-07-20 17:38:49 +01:00
autoRepeatDelay = 300;
autoRepeatInterval = 15;
2024-06-13 14:36:34 +01:00
enable = true;
xkb.layout = "gb";
displayManager.startx.enable = true;
autorun = false;
windowManager.dwm = {
enable = true;
package = pkgs.dwm.overrideAttrs {
2024-07-21 18:23:24 +01:00
#src = /home/sam/.local/share/src/dwm;
src = pkgs.fetchgit {
url = "https://git.bitlab21.com/sam/dwm";
rev = "49dd30c0d9970ce480ada51dfcaac1a071804c64";
sha256 = "0ywca25a1pdjvb4cgv5gx36x3yd6922pqvn9a5f60lcn5fv2a96n";
2024-06-13 14:36:34 +01:00
};
};
};
};
};
}