nix-configs/modules/desktop/xmonad.nix

18 lines
439 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;
};
home.file.wallpaper = {
target = "Pictures/wallpaper.jpg";
source = ../../other/wallpaper.jpg;
onChange = ''
feh --bg-fill ~/Pictures/wallpaper.jpg;
'';
};
2023-04-22 10:52:11 +00:00
};
}