fix(nix): renamed nixie to carbon

This commit is contained in:
Léana 江 2024-02-28 12:28:21 +01:00 committed by Léana 江
parent 9b1e69ba52
commit 053ef59444
12 changed files with 0 additions and 0 deletions

39
nix/hosts/carbon/gui.nix Normal file
View 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;
}