dotfiles/modules/gaming/steam.nix
Noah Masur 41d289c5db refactor colors and options
preparing for light mode, even though specializations aren't working
2022-11-02 21:29:14 -04:00

20 lines
340 B
Nix

{ config, pkgs, lib, ... }: {
imports = [ ./. ];
config = {
hardware.steam-hardware.enable = true;
unfreePackages = [ "steam" "steam-original" "steamcmd" "steam-run" ];
environment.systemPackages = with pkgs; [
steam
# Enable terminal interaction
steamPackages.steamcmd
steam-tui
];
};
}