Update FredOS-Gaming.nix
This commit is contained in:
parent
3500b5da91
commit
55cfa67bae
1 changed files with 12 additions and 0 deletions
|
|
@ -2,10 +2,20 @@
|
||||||
{
|
{
|
||||||
config = lib.mkIf (config.networking.hostName == "FredOS-Gaming") {
|
config = lib.mkIf (config.networking.hostName == "FredOS-Gaming") {
|
||||||
|
|
||||||
|
nixpkgs.config.packageOverrides = pkgs: {
|
||||||
|
pkgs = pkgs // {
|
||||||
|
# This is where you pull in 32-bit packages
|
||||||
|
# We access the i686-linux architecture set:
|
||||||
|
lib32 = pkgs.pkgsi686Linux.pkgs;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
lutris
|
lutris
|
||||||
adwaita-icon-theme # Helps with missing cursors/icons in some Wine games
|
adwaita-icon-theme # Helps with missing cursors/icons in some Wine games
|
||||||
nix-index
|
nix-index
|
||||||
|
libdecor
|
||||||
|
lib32.libdecor
|
||||||
];
|
];
|
||||||
|
|
||||||
# Enables Vulkan and OpenGL drivers
|
# Enables Vulkan and OpenGL drivers
|
||||||
|
|
@ -14,6 +24,8 @@
|
||||||
enable32Bit = true;
|
enable32Bit = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
programs.steam = {
|
programs.steam = {
|
||||||
enable = true;
|
enable = true;
|
||||||
remotePlay.openFirewall = true;
|
remotePlay.openFirewall = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue