diff options
author | Karel Kočí <cynerd@email.cz> | 2022-10-13 15:45:49 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-10-13 15:45:49 +0200 |
commit | d69d3825d55c24420747e080f4840a099176ce51 (patch) | |
tree | 11dd5817917524f27259d85f8f4f68c7c9df1619 /pkgs | |
parent | 7e45f16948a802a3810d915b315f810f83fe8900 (diff) | |
download | nixos-personal-d69d3825d55c24420747e080f4840a099176ce51.tar.gz nixos-personal-d69d3825d55c24420747e080f4840a099176ce51.tar.bz2 nixos-personal-d69d3825d55c24420747e080f4840a099176ce51.zip |
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.
Diffstat (limited to 'pkgs')
-rw-r--r-- | pkgs/default.nix | 9 |
1 files changed, 9 insertions, 0 deletions
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 |