A cross-shell utility for breaking symlinks, written in nu.
Import the flake in your flake.nix
{
inputs = {
unlink.url = "github:valyntyler/unlink";
unlink.inputs.nixpkgs.follows = "nixpkgs";
}
# ...
}Then put this anywhere in your config:
{inputs, ...}: {
environment.systemPackages = [inputs.unlink.packages.x86_64-linux.default];
}Same as above, except place this in your home manager config.
{inputs, ...}: {
home.packages = [inputs.unlink.packages.x86_64-linux.default];
}