feat: switch to pipewire
This commit is contained in:
parent
b414ba1d17
commit
9791074aec
8 changed files with 101 additions and 11 deletions
12
home/gaming/steam.nix
Normal file
12
home/gaming/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