dotfiles/nix/modules/home-manager/features/desktop/dwm.nix

36 lines
506 B
Nix
Raw Normal View History

2025-02-20 21:19:21 +00:00
{
config,
lib,
pkgs,
...
}:
with lib;
{
options.homeManagerModules.dwm.enable = mkEnableOption "Enable dwm";
2025-02-20 21:19:21 +00:00
config = mkIf config.homeManagerModules.dwm.enable {
home = {
file.".xinitrc".text = ''
systemctl --user import-environment DISPLAY
2025-02-20 21:19:21 +00:00
autorandr --change
2025-02-20 21:19:21 +00:00
copyq &
2025-02-20 21:19:21 +00:00
poweralertd -s &
2025-02-20 21:19:21 +00:00
systemctl --user start dwm-status &
exec dwm
'';
packages = with pkgs; [
dunst
poweralertd
];
};
2025-02-20 21:19:21 +00:00
};
}