2023-11-04 02:28:27 +01:00
|
|
|
{ lib, pkgs, config, ... }: {
|
|
|
|
|
|
|
|
imports = [ ./config.nix ./script.nix ./xressources.nix ];
|
|
|
|
|
2024-04-14 07:57:07 +02:00
|
|
|
config = lib.mkIf (config.usercfg.wm == "X11") {
|
2023-11-04 02:28:27 +01:00
|
|
|
xsession.windowManager.bspwm = { enable = true; };
|
|
|
|
services.sxhkd = { enable = true; };
|
|
|
|
home.packages = with pkgs; [ xrandr arandr flameshot xtrlock i3lock ];
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|