feat(binto): add steam
This commit is contained in:
parent
05ab0ea83a
commit
00762bb2e9
1 changed files with 14 additions and 2 deletions
|
@ -1,7 +1,19 @@
|
||||||
# configuration.nix
|
{ nix-gaming, pkgs, ... }: {
|
||||||
{
|
|
||||||
nix.settings = {
|
nix.settings = {
|
||||||
substituters = ["https://nix-gaming.cachix.org"];
|
substituters = ["https://nix-gaming.cachix.org"];
|
||||||
trusted-public-keys = ["nix-gaming.cachix.org-1:nbjlureqMbRAxR1gJ/f3hxemL9svXaZF/Ees8vCUUs4="];
|
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
|
||||||
|
];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue