nixos/modules/desktop/bspwm/default.nix

90 lines
1.8 KiB
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
{
2023-07-12 16:42:51 +04:00
imports = [
./polybar
./lemonbar
];
2023-07-08 19:30:16 +04:00
options.modules.desktop.bspwm = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
services.xserver = {
enable = true;
2023-07-11 00:07:17 +04:00
windowManager = {
bspwm.enable = true;
};
2023-07-11 00:12:00 +04:00
displayManager = {
2023-07-11 00:12:25 +04:00
defaultSession = "none+bspwm";
2023-07-11 00:12:00 +04:00
lightdm = {
2023-07-10 23:52:55 +04:00
enable = true;
2023-07-11 00:18:02 +04:00
background = ../../../config/bspwm/background.png;
2023-07-17 21:30:58 +04:00
greeters.gtk = {
2023-07-10 23:59:27 +04:00
enable = true;
2023-07-17 21:30:58 +04:00
theme = {
name = "vimix-dark-ruby";
2023-07-18 01:20:56 +04:00
package = pkgs.vimix-gtk-themes;
2023-07-17 21:30:58 +04:00
};
2023-07-10 23:59:27 +04:00
};
2023-07-17 21:30:58 +04:00
2023-07-11 00:12:00 +04:00
};
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
rofi
2023-07-11 07:32:58 +04:00
# network
2023-07-09 02:38:42 +04:00
networkmanagerapplet
2023-07-11 07:32:58 +04:00
# brightness
brightnessctl
2023-07-12 00:26:59 +04:00
# gee tee k
vimix-gtk-themes
2023-07-12 00:28:42 +04:00
vimix-icon-theme
2023-07-12 00:26:59 +04:00
lxappearance
2023-07-15 19:06:11 +04:00
catppuccin-cursors.mochaDark
2023-07-12 02:06:16 +04:00
# screen shot (s)
flameshot
2023-07-08 19:30:16 +04:00
];
home-manager.users.sako = { pkgs , ...}: {
2023-07-17 21:22:45 +04:00
home.pointerCursor = {
name = "Catppuccin-Mocha-Dark";
2023-07-17 21:30:58 +04:00
size = 16;
x11 = {
enable = true;
};
2023-07-17 21:22:45 +04:00
gtk.enable = true;
package = pkgs.catppuccin-cursors.mochaDark;
};
gtk = {
2023-07-17 21:33:22 +04:00
theme.name = "vimix-dark-ruby";
iconTheme.name = "Vimix Ruby Dark";
2023-07-15 19:08:20 +04:00
};
2023-07-12 00:21:20 +04:00
xdg.configFile = {
bspwm = {
source = ../../../config/bspwm;
};
sxhkd = {
source = ../../../config/sxhkd;
};
2023-07-08 20:00:13 +04:00
};
2023-07-08 19:30:16 +04:00
};
};
}