1
Fork 0
satellite/modules/applications/xmonad/default.nix

30 lines
645 B
Nix
Raw Normal View History

2021-11-29 15:00:11 +01:00
{ pkgs, ... }: {
2020-04-19 19:26:10 +02:00
home-manager.users.adrielus = {
xsession.windowManager.xmonad = {
enable = true;
enableContribAndExtras = true;
2022-01-17 18:22:09 +01:00
config = ./Main.hs;
2020-04-19 19:26:10 +02:00
};
2021-11-29 15:00:11 +01:00
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";
2020-04-20 15:44:24 +02:00
2022-05-16 23:03:35 +02:00
services.picom = {
2022-09-18 01:00:32 +02:00
enable = false;
2022-05-16 23:03:35 +02:00
blur = true;
shadow = false;
2022-05-16 23:03:35 +02:00
extraOptions = ''
blur:
{
method = "gaussian";
size = 10;
deviation = 5.0;
};
'';
};
2021-11-29 15:00:11 +01:00
};
2020-04-19 19:26:10 +02:00
}