2023-01-26 21:49:43 +01:00
|
|
|
{ pkgs, config, ... }:
|
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 {
|
2023-01-26 21:49:43 +01:00
|
|
|
template = builtins.readFile ./Main.hs;
|
|
|
|
});
|
|
|
|
};
|
2023-01-12 20:49:08 +01:00
|
|
|
|
|
|
|
# Proper wallpaper zooming
|
|
|
|
desktopManager.wallpaper.mode = "fill";
|
|
|
|
|
2023-02-09 23:55:36 +01:00
|
|
|
# Make xmonad session the default
|
|
|
|
displayManager.defaultSession = "none+xmonad";
|
2023-01-10 02:38:06 +01:00
|
|
|
};
|
2023-03-12 05:24:25 +01:00
|
|
|
|
|
|
|
# Enable ad-hoc stylix targets:
|
|
|
|
stylix.targets = {
|
|
|
|
gtk.enable = true;
|
|
|
|
};
|
2023-01-10 02:38:06 +01:00
|
|
|
}
|
|
|
|
|