dotfiles/modules/gaming/steam.nix

11 lines
176 B
Nix
Raw Normal View History

2022-04-26 01:54:53 +00:00
{ config, pkgs, ... }: {
imports = [ ./common.nix ];
config = {
hardware.steam-hardware.enable = true;
environment.systemPackages = with pkgs; [ steam ];
};
}