12 lines
323 B
Nix
Executable File
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 ];
|
|
|
|
};
|
|
}
|