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:
parent
2d48452cce
commit
76d7e1dc06
4 changed files with 12 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -13,6 +13,7 @@
|
||||||
!machines/asus/openttd/
|
!machines/asus/openttd/
|
||||||
!machines/asus/pipewire/
|
!machines/asus/pipewire/
|
||||||
!machines/asus/python/
|
!machines/asus/python/
|
||||||
|
!machines/asus/steam/
|
||||||
!machines/asus/xserver/
|
!machines/asus/xserver/
|
||||||
|
|
||||||
!flake.lock
|
!flake.lock
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
./openttd
|
./openttd
|
||||||
./pipewire
|
./pipewire
|
||||||
./python
|
./python
|
||||||
|
./steam
|
||||||
./xserver
|
./xserver
|
||||||
|
|
||||||
./fonts.nix
|
./fonts.nix
|
||||||
|
|
|
@ -37,7 +37,4 @@ systemConfiguration {
|
||||||
device = "/dev/disk/by-uuid/10bfe7d8-1daf-4c65-a5a6-cf3c9a085478";
|
device = "/dev/disk/by-uuid/10bfe7d8-1daf-4c65-a5a6-cf3c9a085478";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
# Steam uses 32-bit drivers for some unholy fucking reason.
|
|
||||||
hardware.opengl.driSupport32Bit = true;
|
|
||||||
}
|
}
|
||||||
|
|
10
machines/asus/steam/default.nix
Normal file
10
machines/asus/steam/default.nix
Normal 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
|
||||||
|
])
|
Loading…
Add table
Add a link
Reference in a new issue