Skip to content

Commit

Permalink
[steam] enable local share
Browse files Browse the repository at this point in the history
  • Loading branch information
ejiek committed Sep 2, 2023
1 parent a24e951 commit 02d21ba
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions modules/steam/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }:
{ config, lib, pkgs, networking, ... }:
let inherit (lib) types mkIf mkDefault mkOption;
in {
options.my-config = {
Expand All @@ -16,7 +16,8 @@ in {
};

nixpkgs.allowUnfreePackages = [ "steam" "steam-original" "steam-run" ];
};

networking.firewall.allowedTCPPorts = [ 24070 ];
# local share
networking.firewall.allowedTCPPorts = [ 24070 ];
};
}

0 comments on commit 02d21ba

Please sign in to comment.