1
Fork 0
satellite/modules/applications/xmonad/default.nix
2020-04-20 16:44:24 +03:00

21 lines
463 B
Nix

{ ... }: {
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";
};
# services.compton = {
# enable = true;
# activeOpacity = "0.8";
# inactiveOpacity = "0.8";
# fade = true;
# shadow = true;
# };
}