Add minecraft

This commit is contained in:
Nathan McCarty 2025-01-14 15:03:23 -05:00
parent e928ecd667
commit 9b150da119
2 changed files with 15 additions and 0 deletions

View file

@ -35,6 +35,7 @@
(import ../../modules/programs/emacs.nix {}) (import ../../modules/programs/emacs.nix {})
../../modules/programs/fonts.nix ../../modules/programs/fonts.nix
../../modules/programs/desktop.nix ../../modules/programs/desktop.nix
../../modules/programs/games.nix
]; ];
home.username = "nathan"; home.username = "nathan";
home.homeDirectory = "/home/nathan/"; home.homeDirectory = "/home/nathan/";

View file

@ -0,0 +1,14 @@
{
config,
lib,
pkgs,
inputs',
...
}: {
home.packages = with pkgs; [
# Minecraft
prismlauncher
zulu
glfw3-minecraft
];
}