nixos-config/config/modules/bspwm/default.nix

27 lines
439 B
Nix

{ pkgs, ... }:
{
# WM/DE config
gtk = with pkgs.atau-pkgs;
{
enable = true;
font.name = "Victor Mono SemiBold 12";
theme = {
name = "Mac-OS-9";
package = gtk-theme-mac-os-9;
};
iconTheme = {
name = "NineIcons";
package = nineicons-redux;
};
};
xsession.enable = true;
imports = [
./bspwm.nix
./sxhkd.nix
./picom.nix
./polybar.nix
];
}