2023-11-08 17:15:32 +01:00

12 lines
323 B
Nix
Executable File

{ 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 ];
};
}