dotfiles/modules/gaming/default.nix

11 lines
155 B
Nix

{ config, lib, pkgs, ... }:
{
hardware.opengl.enable = true;
home-manager.users.moritz = {
home.packages = with pkgs; [
steam
];
};
}