ref: merged nixos and macOS configuration

This commit is contained in:
Léana 江 2023-12-30 20:45:31 +01:00 committed by Léana 江
parent 76632a9d1c
commit fcba199e19
21 changed files with 35 additions and 12 deletions

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