1
Fork 0
satellite/modules/applications/xmonad/default.nix
2022-05-17 00:03:35 +03:00

30 lines
643 B
Nix

{ 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;
};
'';
};
};
}