From de61a1fc5a2bdb8aeb3f1f06d2c4d22ed3ad68f3 Mon Sep 17 00:00:00 2001 From: Doloro1978 Date: Fri, 17 Oct 2025 11:19:21 +0100 Subject: [PATCH] chore(unityhub@modules): moved to modules --- nix/modules/unityhub/default.nix | 3 +++ nix/modules/unityhub/home.nix | 8 ++++++++ 2 files changed, 11 insertions(+) create mode 100644 nix/modules/unityhub/default.nix create mode 100644 nix/modules/unityhub/home.nix 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"; +}