Files
nixos-configuration/hosts/desktop/default.nix

16 lines
200 B
Nix
Raw Normal View History

2024-12-27 21:31:18 +01:00
{
lib,
pkgs,
2024-12-27 21:31:18 +01:00
...
}:
2024-12-26 22:19:23 +01:00
{
imports = [
(lib.custom.relativeToDesktop "modules")
./bluetooth.nix
./hardware-configuration.nix
2024-12-26 22:19:23 +01:00
];
boot.kernelPackages = pkgs.linuxPackages_latest;
2024-12-26 22:19:23 +01:00
}