Files
cnix/hosts/hardware/cnix.nix
2024-06-29 20:07:07 +02:00

32 lines
469 B
Nix

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