Joey Hafner
d002643347
- WIP: Installer configuration to be used for portable or new systems. - Add defaultApps (zen for links, codium for plain text). - Refactor Ollama (AI) to skip model selection, WIP "codewriter" model. - Password-manager: Switch to wayland package for rofi-rbw, increase lock timeout. - Add mangohud config that shows FPS, frame time, throttling status in a horizontal layout below OW's HUD. - Add nixGL config to use mesa and vulkan. - Refactor configuration.nix as a "hub" file that just imports other files. - amdgpu: Remove problematic amdvlk driver. Was causing misbehavior in Overwatch. - gaming: Add gamescope and gamemode.
25 lines
576 B
Nix
25 lines
576 B
Nix
{ pkgs, ... }: {
|
|
# Configure mouse and touchpad
|
|
services.libinput = {
|
|
enable = true;
|
|
mouse.naturalScrolling = true;
|
|
touchpad.naturalScrolling = true;
|
|
};
|
|
services.goxlr-utility.enable = true;
|
|
hardware.wooting.enable = true;
|
|
hardware.xpadneo.enable = true;
|
|
hardware.openrazer = {
|
|
enable = true;
|
|
users = [ "joey" ];
|
|
batteryNotifier = {
|
|
enable = true;
|
|
frequency = 600;
|
|
percentage = 40;
|
|
};
|
|
};
|
|
environment.systemPackages = with pkgs; [
|
|
razergenie
|
|
gamepad-tool
|
|
linuxKernel.packages.linux_6_11.xpadneo
|
|
];
|
|
} |