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