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