nixos/modules/steam/default.nix

13 lines
325 B
Nix
Raw Normal View History

2023-05-29 12:26:02 +02:00
{ config, ... }:
2022-01-03 17:51:24 +01:00
{
programs.steam.enable = true;
hardware.steam-hardware.enable = true;
networking.firewall = {
allowedTCPPorts = [ 27036 ];
allowedUDPPorts = [ 27031 ];
};
2023-05-29 12:26:02 +02:00
home-manager.users.${config.az-username} = {
home.file.".local/share/applications/steam.desktop".source = ./steam.desktop;
};
2022-01-03 17:51:24 +01:00
}