mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
fix(nix): renamed nixie to carbon
This commit is contained in:
parent
9b1e69ba52
commit
053ef59444
12 changed files with 0 additions and 0 deletions
39
nix/hosts/carbon/gui.nix
Normal file
39
nix/hosts/carbon/gui.nix
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
{pkgs, ...}: {
|
||||
services = {
|
||||
xserver.enable = true;
|
||||
|
||||
xserver = {
|
||||
autoRepeatDelay = 300;
|
||||
autoRepeatInterval = 40;
|
||||
};
|
||||
|
||||
picom.enable = true;
|
||||
xserver.displayManager.lightdm = {
|
||||
enable = true;
|
||||
background = "#000000";
|
||||
greeters.gtk.cursorTheme = {
|
||||
name = "Adwaita";
|
||||
package = pkgs.gnome.adwaita-icon-theme;
|
||||
size = 32;
|
||||
};
|
||||
};
|
||||
xserver.windowManager.xmonad = {
|
||||
enable = true;
|
||||
enableContribAndExtras = true;
|
||||
extraPackages = hp: with hp; [neat-interpolation];
|
||||
};
|
||||
|
||||
xserver.libinput = {
|
||||
mouse = {
|
||||
naturalScrolling = true;
|
||||
accelSpeed = "-0.5";
|
||||
};
|
||||
touchpad = {
|
||||
naturalScrolling = true;
|
||||
tapping = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
programs.light.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue