mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
14 lines
210 B
Nix
14 lines
210 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
programs.steam = {
|
|
enable = true;
|
|
remotePlay.openFirewall = true;
|
|
extraCompatPackages = [
|
|
pkgs.proton-cachyos-x86_64_v3
|
|
pkgs.proton-ge-bin
|
|
];
|
|
};
|
|
}
|