nixos-configs/configs/games.nix

12 lines
218 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
{
hardware.opengl.driSupport32Bit = true;
home-manager.users.froidmpa = {pkgs, config, ...}: {
home.packages = with pkgs; [
steam
lutris
vulkan-tools
];
};
}