From 04e4aa6164e99f333c0bb2a990f37c040b62a155 Mon Sep 17 00:00:00 2001 From: Frost-Phoenix <67cyril6767@gmail.com> Date: Sat, 13 Apr 2024 13:32:38 +0200 Subject: [PATCH] change structure --- modules/home/default.nix | 1 + modules/home/packages.nix | 1 - modules/home/unity.nix | 4 ++++ 3 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 modules/home/unity.nix diff --git a/modules/home/default.nix b/modules/home/default.nix index 261feaf..e10a4a3 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -21,6 +21,7 @@ ++ [(import ./starship.nix)] # ++ [ (import ./steam.nix) ] ++ [(import ./swaylock.nix)] + ++ [(import ./unity.nix)] ++ [(import ./vscodium.nix)] ++ [(import ./waybar)] ++ [(import ./wofi.nix)] diff --git a/modules/home/packages.nix b/modules/home/packages.nix index 9abf1fc..c1c9389 100644 --- a/modules/home/packages.nix +++ b/modules/home/packages.nix @@ -21,7 +21,6 @@ soundwireserver # pass audio to android phone todo # cli todo list toipe # typing test in the terminal - unityhub valgrind # c memory analyzer yazi # terminal file manager youtube-dl diff --git a/modules/home/unity.nix b/modules/home/unity.nix new file mode 100644 index 0000000..f6a8e5c --- /dev/null +++ b/modules/home/unity.nix @@ -0,0 +1,4 @@ +{ pkgs, ... }: +{ + home.packages = (with pkgs; [ unityhub ]); +}