Files
nixos-config/home/programs/xmonad/default.nix
2025-04-30 13:35:31 +02:00

26 lines
345 B
Nix

{ pkgs, ... }:
{
xsession = {
enable = true;
windowManager = {
xmonad = {
enable = true;
enableContribAndExtras = true;
config = ./src/xmonad.hs;
};
};
};
home.packages = with pkgs; [
xmobar
maim
xdotool
xorg.xmessage
ghc
cabal-install
wmctrl
trayer
];
}