mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-05 23:26:23 +01:00
11 lines
243 B
Nix
11 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;
|
|
};
|
|
};
|
|
}
|