1
Fork 0
satellite/hosts/nixos/common/optional/xmonad/default.nix
2023-02-09 23:55:36 +01:00

24 lines
465 B
Nix

{ pkgs, config, ... }:
{
services.xserver = {
enable = true;
# Enable xmonad
windowManager.xmonad = {
enable = true;
enableContribAndExtras = true;
config = builtins.readFile (config.scheme {
template = builtins.readFile ./Main.hs;
});
};
# Proper wallpaper zooming
desktopManager.wallpaper.mode = "fill";
# Make xmonad session the default
displayManager.defaultSession = "none+xmonad";
};
}