mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
nix: refactor modules pass 2
This commit is contained in:
parent
ec7246e524
commit
1716faf2cd
19 changed files with 11 additions and 11 deletions
|
|
@ -1,57 +0,0 @@
|
|||
{pkgs, ...}: {
|
||||
services.xserver.windowManager.xmonad = {
|
||||
enable = true;
|
||||
extraPackages = hs: [
|
||||
# https://github.com/ValveSoftware/steam-for-linux/issues/9376
|
||||
# opt into 0.18.1 specifically
|
||||
hs.xmonad-contrib_0_18_1
|
||||
];
|
||||
};
|
||||
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
autoRepeatDelay = 300;
|
||||
autoRepeatInterval = 40;
|
||||
};
|
||||
|
||||
services.xserver.displayManager.lightdm = {
|
||||
enable = true;
|
||||
background = "#000000";
|
||||
greeters.gtk.cursorTheme = {
|
||||
name = "volantes_cursors";
|
||||
package = pkgs.volantes-cursors;
|
||||
size = 64;
|
||||
};
|
||||
};
|
||||
|
||||
services.xscreensaver.enable = true;
|
||||
|
||||
services.picom = {
|
||||
enable = true;
|
||||
backend = "glx";
|
||||
vSync = true;
|
||||
fade = true;
|
||||
fadeDelta = 3;
|
||||
settings = {
|
||||
fade-exclude = [
|
||||
"name = 'Fcitx5 Input Window'"
|
||||
"class_g = 'fcitx'"
|
||||
"class_i = 'fcitx'"
|
||||
];
|
||||
blur = {
|
||||
method = "dual_kawase";
|
||||
strength = 5;
|
||||
};
|
||||
wintypes = {
|
||||
dropdown_menu = {
|
||||
opacity = 1;
|
||||
blur-background = false;
|
||||
};
|
||||
popup_menu = {
|
||||
opacity = 1;
|
||||
blur-background = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue