dotfiles/modules/gaming/steam.nix

20 lines
340 B
Nix
Raw Normal View History

2022-05-22 23:43:46 +00:00
{ config, pkgs, lib, ... }: {
2022-04-26 01:54:53 +00:00
imports = [ ./. ];
2022-04-26 01:54:53 +00:00
config = {
2022-04-26 01:54:53 +00:00
hardware.steam-hardware.enable = true;
2022-10-29 18:42:37 +00:00
unfreePackages = [ "steam" "steam-original" "steamcmd" "steam-run" ];
2022-05-28 14:34:00 +00:00
environment.systemPackages = with pkgs; [
steam
# Enable terminal interaction
steamPackages.steamcmd
steam-tui
];
2022-04-26 01:54:53 +00:00
};
}