diff --git a/home/path.nix b/home/path.nix index f86eae6..969dbf0 100644 --- a/home/path.nix +++ b/home/path.nix @@ -40,7 +40,6 @@ with lib; pdfarranger polymc protonup - qtcreator rar runelite rust-analyzer @@ -58,11 +57,5 @@ with lib; xclip xournalpp zoom-us - libsForQt5.full - libsForQt5.qt5.qtbase - libsForQt5.qt5.qttools - gnumake - libsndfile - jack2 ]; } diff --git a/jack/flake.nix b/jack/flake.nix index 97d1bc0..e762041 100644 --- a/jack/flake.nix +++ b/jack/flake.nix @@ -6,8 +6,16 @@ devShells."${system}".default = pkgs.mkShell { buildInputs = with pkgs; [ jack2 + qtcreator + qt5.full ]; - #nativeBuildInputs = with pkgs; []; + }; + + pkgs."${system}".default = pkgs.stdenv.mkDerivation { + pname = "proyecto"; + version = "0.1"; + buildInputs = with pkgs; [ qt5.full jack2 libsoundifle qt5.full ]; + nativeBuildInputs = wth pkgs; [ wrapQtAppsHook ] }; }; } diff --git a/jack/jack.nix b/jack/jack.nix deleted file mode 100644 index 9ea0d93..0000000 --- a/jack/jack.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ - outputs = { self, nixpkgs }: let - system = "x86_64-linux"; - pkgs = import nixpkgs { inherit system; config.allowUnfree = true; }; - in { - devShells."${system}".default = pkgs.mkShell { - buildInputs = with pkgs; [ - jack2 - libsndfile - ]; - #nativeBuildInputs = with pkgs; []; - }; - }; -}