nixos/modules/desktop/bspwm/default.nix

51 lines
970 B
Nix
Raw Normal View History

2023-07-08 20:00:13 +04:00
{ outputs, options, config, lib, pkgs, ...}:
2023-07-08 19:30:16 +04:00
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;
2023-07-10 23:52:55 +04:00
displayManager.lightdm = {
enable = true;
2023-07-10 23:53:52 +04:00
greeters.slick.enable = true;
2023-07-10 23:52:55 +04:00
};
2023-07-10 00:31:08 +04:00
libinput = {
enable = true;
# no mouse accel
mouse = {
accelProfile = "flat";
};
# no touchpad accel
touchpad = {
accelProfile = "flat";
};
};
2023-07-08 19:30:16 +04:00
};
users.users.sako.packages = with pkgs; [
2023-07-08 20:00:13 +04:00
polybar
rofi
2023-07-09 02:38:42 +04:00
networkmanagerapplet
2023-07-08 19:30:16 +04:00
];
home-manager.users.sako = { pkgs , ...}: {
xdg.configFile = {
2023-07-08 20:00:13 +04:00
bspwm = {
source = ../../../config/bspwm;
2023-07-08 19:30:16 +04:00
};
2023-07-08 20:00:13 +04:00
sxhkd = {
source = ../../../config/sxhkd;
};
};
2023-07-08 19:30:16 +04:00
};
};
}