overlays/steam: init, for gamescope stuffs

This commit is contained in:
LavaDesu 2022-10-08 11:05:47 +07:00
parent b6690e578c
commit ab3b771978
Signed by: cilly
GPG key ID: 6500251E087653C9
2 changed files with 10 additions and 0 deletions

View file

@ -3,5 +3,6 @@ builtins.map (path: import path) [
./material-icons.nix
./picom.nix
./rofi.nix
./steam.nix
./xinit.nix
]

9
overlays/steam.nix Normal file
View file

@ -0,0 +1,9 @@
self: super: {
steam = super.steam.override {
extraPkgs = pkgs: with pkgs; [
libkrb5
keyutils
gamescope
];
};
}