mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
ref: merged nixos and macOS configuration
This commit is contained in:
parent
76632a9d1c
commit
fcba199e19
21 changed files with 35 additions and 12 deletions
27
nix/hosts/nixie/gui.nix
Normal file
27
nix/hosts/nixie/gui.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{ ... }: {
|
||||
services.xserver.enable = true;
|
||||
|
||||
services.xserver = {
|
||||
autoRepeatDelay = 300;
|
||||
autoRepeatInterval = 40;
|
||||
};
|
||||
|
||||
services.xserver = {
|
||||
displayManager.gdm.enable = true;
|
||||
windowManager.xmonad = {
|
||||
enable = true;
|
||||
enableContribAndExtras = true;
|
||||
extraPackages = hp: with hp; [ neat-interpolation ];
|
||||
};
|
||||
};
|
||||
|
||||
services.xserver.libinput = {
|
||||
mouse = {
|
||||
naturalScrolling = true;
|
||||
accelSpeed = "-0.5";
|
||||
};
|
||||
touchpad = { naturalScrolling = true; };
|
||||
};
|
||||
|
||||
programs.light.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue