xmoadn progres and awesome
This commit is contained in:
parent
fd2fcc1823
commit
45b4b8c88c
13
modules/desktop/awesome/default.nix
Normal file
13
modules/desktop/awesome/default.nix
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
{ outputs, options, config, lib, pkgs, ...}:
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.modules.desktop.awesome;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.modules.desktop.awesome = {
|
||||||
|
enable = mkEnableOption false;
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
};
|
||||||
|
}
|
|
@ -21,6 +21,71 @@ in
|
||||||
"-i${xmonad-contexts}" # tell ghc to search in the respective nix store path for the module
|
"-i${xmonad-contexts}" # tell ghc to search in the respective nix store path for the module
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
displayManager = {
|
||||||
|
lightdm = {
|
||||||
|
enable = true;
|
||||||
|
background = ../../../config/background.png;
|
||||||
|
greeters.gtk = {
|
||||||
|
enable = true;
|
||||||
|
theme = {
|
||||||
|
name = "vimix-dark-ruby";
|
||||||
|
package = pkgs.vimix-gtk-themes;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
libinput = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
# mouse
|
||||||
|
mouse = {
|
||||||
|
accelProfile = "flat";
|
||||||
|
};
|
||||||
|
|
||||||
|
# touchpad
|
||||||
|
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";
|
||||||
|
};
|
||||||
|
xdg.configFile = {
|
||||||
|
bspwm = {
|
||||||
|
source = ../../../config/bspwm;
|
||||||
|
};
|
||||||
|
sxhkd = {
|
||||||
|
source = ../../../config/sxhkd;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue