Files
nix-config/nixos/imports/hardware.nix

13 lines
206 B
Nix

{pkgs, ...}: {
hardware = {
# Bluetooth.
bluetooth.enable = true;
bluetooth.powerOnBoot = true;
graphics = {
enable = true;
extraPackages = with pkgs; [amdvlk];
};
};
}