feat: update steam config
This commit is contained in:
parent
82181a8d8b
commit
8bf3bbebd0
4 changed files with 27 additions and 1 deletions
|
@ -14,6 +14,7 @@
|
|||
./browsers
|
||||
./planck.nix
|
||||
./ausweisapp.nix
|
||||
./steam.nix
|
||||
];
|
||||
|
||||
services.gammastep = {
|
||||
|
@ -74,7 +75,6 @@
|
|||
anki
|
||||
|
||||
# gaming
|
||||
steam
|
||||
lutris
|
||||
|
||||
# privacy
|
||||
|
|
12
home/steam.nix
Normal file
12
home/steam.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ config, pkgs, nixosConfig, ... }:
|
||||
|
||||
let
|
||||
steam = pkgs.steam.override {
|
||||
extraLibraries = pkgs:
|
||||
with nixosConfig.hardware.opengl;
|
||||
if pkgs.hostPlatform.is64bit then
|
||||
[ package ] ++ extraPackages
|
||||
else
|
||||
[ package32 ] ++ extraPackages32;
|
||||
};
|
||||
in { home.packages = [ steam steam.run ]; }
|
Loading…
Add table
Add a link
Reference in a new issue