Files
nixos/system/hardware.nix
T
2025-06-30 15:19:13 -05:00

14 lines
199 B
Nix

{
myConfig,
pkgs,
...
}: {
hardware = {
logitech.wireless.enable = myConfig.linux.logitech-hardware.enable;
bluetooth = {
enable = true;
powerOnBoot = true;
};
};
}