Files
cnix/hosts/hardware/cnix.nix
2024-06-24 20:27:04 +02:00

24 lines
365 B
Nix

{ pkgs, ... }:
{
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
gamescope
];
};
};
}