Files
nixos-configuration/hosts/desktop/default.nix
Martin Berg Alstad 0770ae3ecf [desktop] Bluetooth
Added Bluetooth support to desktop, including PS3 controllers
2025-04-29 20:32:24 +02:00

16 lines
204 B
Nix

{
lib,
pkgs,
...
}:
{
imports = [
(lib.custom.relativeToRoot "shared/modules")
./bluetooth.nix
./hardware-configuration.nix
];
boot.kernelPackages = pkgs.linuxPackages_latest;
}