nix-configs/modules/desktop/xmonad.nix

23 lines
444 B
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}:
2023-04-22 10:52:11 +00:00
with lib; {
home-manager.users.jade = {pkgs, ...}: {
2023-04-22 10:52:11 +00:00
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
};
}