{ pkgs, ... }: { home-manager.users.adrielus = { xsession.windowManager.xmonad = { enable = true; enableContribAndExtras = true; config = ./Main.hs; }; home.packages = with pkgs; [ xwallpaper ]; # Tell KDE to use xmonad # home.file.".config/plasma-workspace/env/set_window_manager.sh".text = # "export KDEWM=/home/adrielus/.nix-profile/bin/xmonad"; services.picom = { enable = true; blur = true; shadow = true; extraOptions = '' blur: { method = "gaussian"; size = 10; deviation = 5.0; }; ''; }; }; }