16 lines
198 B
Nix
16 lines
198 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
imports = [
|
|
(lib.custom.relativeToDesktop "modules")
|
|
./bluetooth.nix
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
boot.kernelPackages = pkgs.linuxPackages_6_14;
|
|
}
|