nixos/hosts/common/optional/dwm.nix

27 lines
659 B
Nix
Raw Normal View History

2024-06-13 14:36:34 +01:00
{ pkgs, ... }:
{
services = {
libinput.enable = true;
xserver = {
2024-06-14 18:04:48 +01:00
autoRepeatDelay = 250;
autoRepeatInterval = 30;
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 {
src = pkgs.fetchFromGitea {
domain = "git.bitlab21.com";
owner = "sam";
repo = "dwm";
rev = "e511497dbda385ca34ec756862fc70c1f60dd879";
sha256 = "sha256-oIUjfpcHnTRODCRsFJhtyh11pluQMY7BvLl8W+4KikQ=";
2024-06-13 14:36:34 +01:00
};
};
};
};
};
}