From d69d3825d55c24420747e080f4840a099176ce51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Thu, 13 Oct 2022 15:45:49 +0200 Subject: pkgs: add cynerd-profile The idea is that on NixOS not used solely by me I can use nix profile to install packages and shell environment I want without installing the to the system. --- pkgs/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'pkgs/default.nix') diff --git a/pkgs/default.nix b/pkgs/default.nix index 46b65f3..56f23cc 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -21,6 +21,15 @@ let sdcv-unwrapped = callPackage ./sdcv { }; sdcv = callPackage ./stardict/wrapper.nix { stardict = sdcv-unwrapped; }; + # Package to be installed to the user's profile + cynerd-profile = pkgs.symlinkJoin { + name = "cynerd-profile"; + paths = with pkgs; [ + self.inputs.shellrc.packages.${nixpkgs.system}.default + tig + ]; + }; + }; in personalpkgs -- cgit v1.2.3