os/profiles/graphical/xmonad/default.nix
2020-12-05 18:13:13 -07:00

28 lines
513 B
Nix

{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
farbfeld
xss-lock
imgurbash2
maim
xclip
xorg.xdpyinfo
];
services.xserver.windowManager.xmonad = {
enable = true;
enableContribAndExtras = true;
config = import ./xmonad.hs.nix { inherit pkgs; };
};
services.picom = {
enable = true;
inactiveOpacity = 0.8;
settings = {
"unredir-if-possible" = true;
"focus-exclude" = "name = 'slock'";
};
};
programs.slock.enable = true;
}