diff --git a/nix/modules/unityhub/default.nix b/nix/modules/unityhub/default.nix new file mode 100644 index 0000000..3f46f00 --- /dev/null +++ b/nix/modules/unityhub/default.nix @@ -0,0 +1,3 @@ +_: { + home = ./home.nix; +} diff --git a/nix/modules/unityhub/home.nix b/nix/modules/unityhub/home.nix new file mode 100644 index 0000000..26ca7bc --- /dev/null +++ b/nix/modules/unityhub/home.nix @@ -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"; +}