Files
cnix/hosts/hardware/adampad.nix
2024-06-27 18:05:43 +02:00

28 lines
377 B
Nix

{
pkgs,
lib,
config,
inputs,
...
}:
{
zramSwap.enable = true;
security.rtkit.enable = true;
hardware = {
pulseaudio.enable = false;
bluetooth = {
enable = true;
powerOnBoot = true;
};
graphics = {
enable = true;
extraPackages = with pkgs; [
libva
vaapiVdpau
libvdpau-va-gl
];
};
};
}