Files
cnix/hosts/hardware/cnix.nix
2024-06-26 19:25:27 +02:00

34 lines
465 B
Nix

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