dotfiles/modules/gaming/steam.nix
2022-04-25 21:54:53 -04:00

11 lines
176 B
Nix

{ config, pkgs, ... }: {
imports = [ ./common.nix ];
config = {
hardware.steam-hardware.enable = true;
environment.systemPackages = with pkgs; [ steam ];
};
}