home: add some packages

This commit is contained in:
Bruno BELANYI 2021-02-20 13:41:44 +00:00
parent 94950d3360
commit b54f0e87a1
2 changed files with 8 additions and 0 deletions

View file

@ -5,6 +5,7 @@
./documentation.nix
./git
./jq.nix
./packages.nix
./pager.nix
./zsh
];

7
home/packages.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
gitAndTools.tig
rr
];
}