nix/home/games/morrowind.nix
2026-01-29 08:52:21 -05:00

13 lines
155 B
Nix

{
config,
pkgs,
...
}:
{
home = {
packages = with pkgs; [ openmw ];
sessionVariables = {
SDL_VIDEO_DRIVER = "wayland";
};
};
}