dotfiles/modules/gaming/steam.nix
2022-04-28 22:43:50 -04:00

17 lines
331 B
Nix

{ config, pkgs, lib, ... }:
with lib;
let cfg = config.modules.gaming.steam;
in {
options.modules.gaming.steam = { enable = mkEnableOption "Steam"; };
config = mkIf cfg.enable {
hardware.steam-hardware.enable = true;
nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [ steam ];
};
}