dotfiles/modules/gaming/default.nix

11 lines
155 B
Nix
Raw Normal View History

2021-09-14 23:04:29 +02:00
{ config, lib, pkgs, ... }:
{
2021-09-14 23:53:07 +02:00
hardware.opengl.enable = true;
2021-09-14 23:04:29 +02:00
home-manager.users.moritz = {
home.packages = with pkgs; [
steam
];
};
}