14 lines
256 B
Nix
14 lines
256 B
Nix
{pkgs, config, ...}:
|
|
{
|
|
xsession = {
|
|
windowManager.bspwm = {
|
|
enable = false;
|
|
extraConfig = builtins.readFile ./config/bspwm/bspwmrc;
|
|
};
|
|
pointerCursor = {
|
|
package = pkgs.numix-cursor-theme;
|
|
name = "Numix";
|
|
};
|
|
};
|
|
}
|