Something went wrong. Try again.
TRAMP-style remote editing for nushell: an ssh agent and a nu plugin, in Rust
Something went wrong. Try again.
nushell-plugin-tramp flake.nix
1.1 kB · 29 lines
Nix
at main
123456789101112131415161718192021222324252627282930# Standalone build for the published repo. Generated by# platform/tangled/publish/gen-project.nu; edit that template, not this file.## The devshell and its hooks, the formatter and the nixpkgs this resolves# against are shared with every other repo published from the monorepo, and# arrive through nix-workspace. The build itself is this repo's own# default.nix, the same file the monorepo builds it with, so there is nothing# about it to restate here.{ description = "A TRAMP-inspired remote filesystem plugin for Nushell";
inputs = { workspace.url = "git+https://tangled.org/overby.me/nix-workspace";
# nix-lib carries buildCargoProject, which every project builds # with: one derivation per crate rather than one for the whole graph. nix-lib = { url = "git+https://tangled.org/overby.me/nix-lib"; inputs.workspace.follows = "workspace"; }; };
outputs = inputs: inputs.workspace { inherit inputs; outputDirs = [./.]; homeModules."nushell-plugin-tramp" = ./hm-module.nix; };}