commit | a4203e86afe72d220c73a152f74c3a0199cd4726 | [log] [tgz] |
---|---|---|
author | Skyler Grey <skyler3665@gmail.com> | Thu Jan 26 00:44:59 2023 +0000 |
committer | Skyler Grey <skyler3665@gmail.com> | Sun Feb 26 13:09:27 2023 +0000 |
tree | 6bc67682ee60f81b3a768c9db44645e9e8e92b22 | |
parent | f75e3e7a9c234b6b8f61a35c750b97afa0f2d400 [diff] |
Install unity3d
diff --git a/modules/unity.nix b/modules/unity.nix new file mode 100644 index 0000000..f39a4a3 --- /dev/null +++ b/modules/unity.nix
@@ -0,0 +1,8 @@ +{ pkgs, username, ... }: { + home.home.packages = [ pkgs.unityhub ]; + config = { + internal.allowUnfree = [ "unityhub" ]; + environment.persistence."/large/persist".users.${username}.directories = + [ ".config/UnityHub" ]; + }; +}