mirror of
https://github.com/JaxTheWolf/nixos.git
synced 2026-03-31 17:50:23 +02:00
11 lines
182 B
Nix
11 lines
182 B
Nix
{pkgs, ...}: {
|
|
boot = {
|
|
kernelPackages = pkgs.linuxKernel.packages.linux_xanmod_latest;
|
|
|
|
kernelModules = [
|
|
"hid-logitech-dj"
|
|
"hid-logitech-hidpp"
|
|
];
|
|
};
|
|
}
|