mirror of
https://github.com/JaxTheWolf/nixos.git
synced 2026-04-01 10:10:22 +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"
|
|
];
|
|
};
|
|
}
|