mirror of
https://github.com/morten-olsen/nixos-config.git
synced 2026-02-08 00:36:27 +01:00
20 lines
384 B
Nix
20 lines
384 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.packages = [
|
|
pkgs.steam-run,
|
|
];
|
|
|
|
programs.steam = {
|
|
enable = true;
|
|
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
|
|
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
|
|
};
|
|
|
|
nixpkgs = {
|
|
overlays = [
|
|
(import ./overlays/steam.nix)
|
|
];
|
|
};
|
|
}
|