mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
nix: tucked away hosts
This commit is contained in:
parent
f573e1a1a9
commit
32eafdd5fe
16 changed files with 2 additions and 3 deletions
40
nix/configurations/host/carbon/gui.nix
Normal file
40
nix/configurations/host/carbon/gui.nix
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
{ 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: [ hp.neat-interpolation ];
|
||||
};
|
||||
|
||||
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