mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 04:02:55 +00:00
20 lines
401 B
Nix
20 lines
401 B
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
options.gaming.steam = lib.mkEnableOption "Steam";
|
|
|
|
config = lib.mkIf config.gaming.steam {
|
|
hardware.steam-hardware.enable = true;
|
|
unfreePackages = [ "steam" "steam-original" "steamcmd" "steam-run" ];
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
steam
|
|
|
|
# Enable terminal interaction
|
|
steamPackages.steamcmd
|
|
steam-tui
|
|
|
|
];
|
|
};
|
|
|
|
}
|