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

22 lines
314 B
Nix

{ pkgs, ... }:
{
# WM/DE config
gtk = {
enable = true;
font.name = "Victor Mono SemiBold 12";
theme = {
name = "SolArc-Dark";
package = pkgs.solarc-gtk-theme;
};
};
xsession.enable = true;
imports = [
./bspwm.nix
./sxhkd.nix
./picom.nix
./polybar.nix
];
}