dotfiles/modules/gaming/steam.nix
2022-04-27 09:23:26 -04:00

16 lines
292 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;
environment.systemPackages = with pkgs; [ steam ];
};
}