13 lines
206 B
Nix
13 lines
206 B
Nix
{pkgs, ...}: {
|
|
hardware = {
|
|
# Bluetooth.
|
|
bluetooth.enable = true;
|
|
bluetooth.powerOnBoot = true;
|
|
|
|
graphics = {
|
|
enable = true;
|
|
extraPackages = with pkgs; [amdvlk];
|
|
};
|
|
};
|
|
}
|