nichts/modules/shell/module.nix

22 lines
304 B
Nix

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