Bruno BELANYI
581aa1b4e3
My trackpoint, and its buttons, had stopped working a while ago. Before that, I regularly had problems where the cursor jumped around randomly, or the buttons stopped working. This seems to have fixed it.
37 lines
684 B
Nix
37 lines
684 B
Nix
{ lib, modulesPath, ... }:
|
|
{
|
|
imports = [
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
|
];
|
|
|
|
fileSystems = {
|
|
"/" = {
|
|
device = "/dev/disk/by-label/nixos";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
"/boot" = {
|
|
device = "/dev/disk/by-label/boot";
|
|
fsType = "vfat";
|
|
};
|
|
};
|
|
|
|
swapDevices = [
|
|
{ device = "/dev/disk/by-label/swap"; }
|
|
];
|
|
|
|
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
|
|
|
hardware = {
|
|
cpu.intel.updateMicrocode = true;
|
|
|
|
trackpoint = {
|
|
enable = true;
|
|
|
|
emulateWheel = true; # Holding middle buttons allows scrolling
|
|
|
|
device = "TPPS/2 Elan TrackPoint"; # Use the correct device name
|
|
};
|
|
};
|
|
}
|