15247fa82d
- Use base16 colors for xmonad - No more useless fish base16 theming - Different wallpapers for each theme
35 lines
651 B
Nix
35 lines
651 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";
|
|
|
|
displayManager = {
|
|
# make xmonad session the default
|
|
defaultSession = "none+xmonad";
|
|
|
|
# enable startx
|
|
# startx.enable = true;
|
|
sddm.enable = true;
|
|
|
|
# autoLogin = {
|
|
# enable = true;
|
|
# user = "adrielus";
|
|
# };
|
|
};
|
|
};
|
|
}
|
|
|