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

18 lines
445 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
2021-11-29 15:00:11 +01:00
services.picom = { enable = true; };
};
2020-04-19 19:26:10 +02:00
}