62 lines
1.2 KiB
Nix
62 lines
1.2 KiB
Nix
{ outputs, options, config, lib, pkgs, ...}:
|
|
with lib;
|
|
let
|
|
cfg = config.modules.desktop.bspwm;
|
|
in
|
|
{
|
|
options.modules.desktop.bspwm = {
|
|
enable = mkEnableOption false;
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
services.xserver = {
|
|
enable = true;
|
|
windowManager = {
|
|
bspwm.enable = true;
|
|
};
|
|
displayManager = {
|
|
defaultSession = "none+bspwm";
|
|
lightdm = {
|
|
enable = true;
|
|
background = ../../../config/bspwm/background.png;
|
|
greeters.tiny = {
|
|
enable = true;
|
|
label = {
|
|
user = "whatever you named yourself";
|
|
pass = "whats the magic word?";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
libinput = {
|
|
enable = true;
|
|
|
|
# no mouse accel
|
|
mouse = {
|
|
accelProfile = "flat";
|
|
};
|
|
|
|
# no touchpad accel
|
|
touchpad = {
|
|
accelProfile = "flat";
|
|
};
|
|
};
|
|
};
|
|
users.users.sako.packages = with pkgs; [
|
|
polybar
|
|
rofi
|
|
networkmanagerapplet
|
|
];
|
|
|
|
home-manager.users.sako = { pkgs , ...}: {
|
|
xdg.configFile = {
|
|
bspwm = {
|
|
source = ../../../config/bspwm;
|
|
};
|
|
sxhkd = {
|
|
source = ../../../config/sxhkd;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|