flakes/overlays/steam.nix

14 lines
208 B
Nix
Raw Permalink Normal View History

self: super: {
steam = super.steam.override {
extraPkgs = pkgs: with pkgs; [
libkrb5
keyutils
gamescope
];
extraLibraries = pkgs: with pkgs; [
openssl_1_1
];
};
}