feat(binto): add steam

This commit is contained in:
matt1432 2023-10-17 19:37:21 -04:00
parent 05ab0ea83a
commit 00762bb2e9

View file

@ -1,7 +1,19 @@
# configuration.nix
{
{ nix-gaming, pkgs, ... }: {
nix.settings = {
substituters = ["https://nix-gaming.cachix.org"];
trusted-public-keys = ["nix-gaming.cachix.org-1:nbjlureqMbRAxR1gJ/f3hxemL9svXaZF/Ees8vCUUs4="];
};
imports = [
nix-gaming.nixosModules.steamCompat
];
programs.steam = {
enable = true;
extraCompatPackages = [
# pkgs.luxtorpeda
nix-gaming.packages.${pkgs.system}.proton-ge
];
};
}