12 lines
323 B
Nix
12 lines
323 B
Nix
|
{ lib, pkgs, config, ... }: {
|
||
|
|
||
|
imports = [ ./config.nix ./script.nix ./xressources.nix ];
|
||
|
|
||
|
config = lib.mkIf (config.homecfg.wm == "X11") {
|
||
|
xsession.windowManager.bspwm = { enable = true; };
|
||
|
services.sxhkd = { enable = true; };
|
||
|
home.packages = with pkgs; [ xrandr arandr flameshot xtrlock i3lock ];
|
||
|
|
||
|
};
|
||
|
}
|