nix-configs/modules/desktop/xmonad.nix

11 lines
243 B
Nix
Raw Normal View History

2023-04-22 10:52:11 +00:00
{ config, lib, pkgs, ... }:
with lib; {
home-manager.users.jade = { pkgs, ... }: {
xsession.windowManager.xmonad = {
enable = true;
enableContribAndExtras = true;
config = ../../haskell/xmonad/xmonad.hs;
};
};
}