dotfiles/modules/gaming/steam.nix

12 lines
272 B
Nix
Raw Normal View History

2022-05-22 23:43:46 +00:00
{ config, pkgs, lib, ... }: {
2022-04-26 01:54:53 +00:00
2022-05-22 23:43:46 +00:00
options.gaming.steam = lib.mkEnableOption "Steam";
2022-04-26 01:54:53 +00:00
2022-05-22 23:43:46 +00:00
config = lib.mkIf config.gaming.steam {
2022-04-26 01:54:53 +00:00
hardware.steam-hardware.enable = true;
2022-04-29 02:43:50 +00:00
nixpkgs.config.allowUnfree = true;
2022-04-26 01:54:53 +00:00
environment.systemPackages = with pkgs; [ steam ];
};
}