31 lines
380 B
Nix
Executable File
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"
|
|
];
|
|
}
|