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

21 lines
463 B
Nix
Raw Normal View History

2020-04-19 19:26:10 +02:00
{ ... }: {
home-manager.users.adrielus = {
xsession.windowManager.xmonad = {
enable = true;
enableContribAndExtras = true;
config = ./xmonad.hs;
};
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
# services.compton = {
# enable = true;
# activeOpacity = "0.8";
# inactiveOpacity = "0.8";
# fade = true;
# shadow = true;
# };
2020-04-19 19:26:10 +02:00
}