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

12 lines
278 B
Nix
Raw Normal View History

2020-06-09 16:36:38 +00:00
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [ xss-lock dzvol maim ];
services.xserver.windowManager.xmonad = {
enable = true;
enableContribAndExtras = true;
config = import ./xmonad.hs.nix { inherit pkgs; };
};
programs.slock.enable = true;
}