shell: working nushell

This commit is contained in:
Charlie Root 2024-09-09 21:33:14 +02:00
commit 9cd3e455ce
3 changed files with 6 additions and 27 deletions

View file

@ -1,22 +0,0 @@
{
config,
inputs,
lib,
pkgs,
...
}: let
test = inputs.wrapper-manager.lib.build {
inherit pkgs;
modules = [
{
wrappers = {
test = {
basePackage = pkgs.hello;
};
};
}
];
};
in {
environment.systemPackages = [test];
}