cartierf89 b5dfc7998d nix os
2025-08-19 11:52:43 -04:00

31 lines
380 B
Nix
Executable File

{
config,
pkgs,
inputs,
...
}:
{
boot = {
kernelModules = [ "uinput" ];
};
environment = {
systemPackages = with pkgs; [
solaar # Manage logitech mouse
];
};
hardware = {
logitech = {
wireless.enable = true;
wireless.enableGraphical = true;
};
};
users.users.cartier.extraGroups = [
"input"
"plugdev"
];
}