feat: added test package import

This commit is contained in:
Nick 2025-11-22 17:43:26 -06:00
parent 83bab8d7d8
commit 4c132e6728
2 changed files with 12 additions and 0 deletions

View file

@ -73,6 +73,7 @@ in
vsCode vsCode
zathura zathura
zed zed
test
; ;
}; };
}; };

View file

@ -0,0 +1,11 @@
{
pkgs,
...
}:
{
home.packages = builtins.attrValues {
inherit (pkgs)
# kanri
;
};
}