chore(unityhub@modules): moved to modules

This commit is contained in:
2025-10-17 11:19:21 +01:00
parent 5e85336614
commit de61a1fc5a
2 changed files with 11 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
_: {
home = ./home.nix;
}

View File

@@ -0,0 +1,8 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
unityhub
];
# so alcom can use it
home.file.".local/bin/unityhub".source = "${pkgs.unityhub}/bin/unityhub";
}