awesome window manager

This commit is contained in:
Sakooooo 2023-08-02 15:49:33 +03:00
parent 98e7da101d
commit 75c5c71ea1
Signed by: sako
GPG key ID: 3FD715D87D7725E0
3 changed files with 79 additions and 1 deletions

View file

@ -14,7 +14,8 @@
modules = {
desktop = {
kitty.enable = true;
xmonad.enable = true;
xmonad.enable = false;
awesome.enable = true;
dwm = {
enable = false;
dwmblocks.enable = false;

View file

@ -9,5 +9,81 @@ in
};
config = mkIf cfg.enable {
services.xserver = {
enable = true;
windowManager.awesome = {
enable = true;
luaModules = with pkgs.luaPackages; [
luarocks
luadbi-mysql
];
};
displayManager = {
defaultSession = "none+awesome";
lightdm = {
enable = true;
background = ../../../config/bspwm/background.png;
greeters.gtk = {
enable = true;
theme = {
name = "vimix-dark-ruby";
package = pkgs.vimix-gtk-themes;
};
};
};
};
libinput = {
enable = true;
# no mouse accel
mouse = {
accelProfile = "flat";
};
# no touchpad accel
touchpad = {
accelProfile = "flat";
};
};
};
users.users.sako.packages = with pkgs; [
rofi
# network
networkmanagerapplet
# brightness
brightnessctl
# gee tee k
vimix-gtk-themes
vimix-icon-theme
lxappearance
catppuccin-cursors.mochaDark
# screen shot (s)
flameshot
];
home-manager.users.sako = { pkgs , ...}: {
home.pointerCursor = {
name = "Catppuccin-Mocha-Dark";
size = 16;
x11 = {
enable = true;
};
gtk.enable = true;
package = pkgs.catppuccin-cursors.mochaDark;
};
gtk = {
theme.name = "vimix-dark-ruby";
iconTheme.name = "Vimix Ruby Dark";
};
home.file = {
"background.png" = {
enable = true;
source = ../../../config/background.png;
};
};
xdg.configFile = {
};
};
};
}

View file

@ -1,6 +1,7 @@
{
imports = [
# window managers
./awesome
./bspwm
./dwm
./hyprland