1
Fork 0
satellite/hosts/nixos/common/optional/xmonad/default.nix
Matei Adriel 15247fa82d
Many changes, but among other things:
- Use base16 colors for xmonad
- No more useless fish base16 theming
- Different wallpapers for each theme
2023-01-26 21:49:43 +01:00

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";
# };
};
};
}