1
Fork 0
satellite/hosts/nixos/common/optional/xorg/xmonad/default.nix

22 lines
428 B
Nix
Raw Normal View History

2023-07-21 18:30:48 +02:00
{ config, ... }:
2023-01-10 02:38:06 +01:00
{
2023-12-02 00:46:56 +01:00
imports = [ ../xserver.nix ../touchpad.nix ];
2023-01-10 02:38:06 +01:00
services.xserver = {
enable = true;
# Enable xmonad
windowManager.xmonad = {
enable = true;
enableContribAndExtras = true;
2023-03-12 05:24:25 +01:00
config = builtins.readFile (config.lib.stylix.colors {
template = builtins.readFile ./Main.hs;
});
};
# Proper wallpaper zooming
desktopManager.wallpaper.mode = "fill";
2023-03-12 05:24:25 +01:00
};
2023-01-10 02:38:06 +01:00
}