pub-solar-os/profiles/graphical/xmonad/default.nix

28 lines
513 B
Nix
Raw Normal View History

2020-06-09 16:36:38 +00:00
{ pkgs, ... }: {
2020-06-09 19:24:41 +00:00
environment.systemPackages = with pkgs; [
farbfeld
xss-lock
imgurbash2
maim
xclip
2020-06-13 00:49:08 +00:00
xorg.xdpyinfo
2020-06-09 19:24:41 +00:00
];
2020-06-09 16:36:38 +00:00
services.xserver.windowManager.xmonad = {
enable = true;
enableContribAndExtras = true;
config = import ./xmonad.hs.nix { inherit pkgs; };
};
services.picom = {
enable = true;
2020-12-06 01:13:13 +00:00
inactiveOpacity = 0.8;
settings = {
"unredir-if-possible" = true;
"focus-exclude" = "name = 'slock'";
};
};
2020-06-09 16:36:38 +00:00
programs.slock.enable = true;
}