forked from pub-solar/os
28 lines
513 B
Nix
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;
|
|
}
|