School: add unity hub

This commit is contained in:
Toast 2024-03-13 11:01:22 +01:00
parent ff7ed8e940
commit 81bb301ee2
2 changed files with 10 additions and 0 deletions

View file

@ -6,6 +6,7 @@
./idea.nix ./idea.nix
./vscode.nix ./vscode.nix
./helix.nix ./helix.nix
./unity.nix
]; ];
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [

View file

@ -0,0 +1,9 @@
{ pkgs, ... }:
{
home-manager.users.toast = {
home.packages = [(
pkgs.unityhub
)];
};
}