10 lines
142 B
Nix
10 lines
142 B
Nix
|
|
self: super: {
|
||
|
|
steam = super.steam.override {
|
||
|
|
extraPkgs = pkgs: with pkgs; [
|
||
|
|
libkrb5
|
||
|
|
keyutils
|
||
|
|
gamescope
|
||
|
|
];
|
||
|
|
};
|
||
|
|
}
|