nix-configs/modules/desktop/xmonad.nix
2023-04-22 12:52:11 +02:00

10 lines
243 B
Nix

{ config, lib, pkgs, ... }:
with lib; {
home-manager.users.jade = { pkgs, ... }: {
xsession.windowManager.xmonad = {
enable = true;
enableContribAndExtras = true;
config = ../../haskell/xmonad/xmonad.hs;
};
};
}