1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

Move supporting 32 bit opengl drivers and Steam to its own directory

This commit is contained in:
RGBCube 2023-05-27 21:35:39 +03:00
parent 2d48452cce
commit 76d7e1dc06
No known key found for this signature in database
4 changed files with 12 additions and 3 deletions

1
.gitignore vendored
View file

@ -13,6 +13,7 @@
!machines/asus/openttd/
!machines/asus/pipewire/
!machines/asus/python/
!machines/asus/steam/
!machines/asus/xserver/
!flake.lock

View file

@ -20,6 +20,7 @@
./openttd
./pipewire
./python
./steam
./xserver
./fonts.nix

View file

@ -37,7 +37,4 @@ systemConfiguration {
device = "/dev/disk/by-uuid/10bfe7d8-1daf-4c65-a5a6-cf3c9a085478";
}
];
# Steam uses 32-bit drivers for some unholy fucking reason.
hardware.opengl.driSupport32Bit = true;
}

View file

@ -0,0 +1,10 @@
{ lib, pkgs, systemConfiguration, homePackages, ... }: lib.recursiveUpdate
(systemConfiguration {
# Steam uses 32-bit drivers for some unholy fucking reason.
hardware.opengl.driSupport32Bit = true;
})
(with pkgs; homePackages "nixos" [
steam
])