notes/os/linux/nixos/integration/game/presentations.txt
Ihar Hancharenka c43f21f026 m
2024-05-09 09:03:43 +03:00

19 строки
574 B
Plaintext

2024
Vimjoyer - Is NixOS The Best Gaming Distro | Linux Gaming Setup of 8:36
https://www.youtube.com/watch?v=qlfm3MEbqYA
hardware.opengl = {
enable = true;
driSupport = true;
driSupport32Bit = true;
};
services.xserver.videoDrivers = ["amdgpu"];
inputs.nixos-hardware.url = "github:NixOS/nixos-hardware/master";
outputs = { self, nixpkgs, nixos-hardware }: {
nixosConfigurations.<your-hostname> = nixpkgs.lin.nixosSystem {
modules = [
nixos-hardware.nixosModules.dell-xps-13-9380
];
};
};