.github
docs
keys
modules
systems
users
alice
home
systems
artemision
kernel-patches
audio.nix
configuration.nix
default.nix
desktop.nix
fingerprint.nix
fonts.nix
graphics.nix
hardware.nix
non-server.nix
polkit.nix
programs.nix
secrets.yaml
steam.nix
wifi.nix
zerotier.nix
configuration.nix
non-server.nix
programs.nix
default.nix
home.nix
secrets.yaml
richie
default.nix
.envrc
.gitignore
.sops.yaml
flake.lock
flake.nix
treefmt.toml
17 lines
255 B
Nix
17 lines
255 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
programs.steam = {
|
|
enable = true;
|
|
remotePlay.openFirewall = true;
|
|
localNetworkGameTransfers.openFirewall = true;
|
|
extraCompatPackages = with pkgs; [ proton-ge-bin ];
|
|
extest.enable = true;
|
|
};
|
|
}
|