We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What's the best way to go about leveraging this from home manager?
The text was updated successfully, but these errors were encountered:
I'd say using the flake directly, something like this:
inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; home-manager = { url = github:nix-community/home-manager; inputs.nixpkgs.follows = "nixpkgs"; }; bitwarden-ssh-agent = { url = github:joaojacome/bitwarden-ssh-agent; inputs.nixpkgs.follows = "nixpkgs"; }; }; outputs = { nixpkgs, home-manager, bitwarden-ssh-agent... }: { modules = [ { nixpkgs.overlays = [ bitwarden-ssh-agent.overlays.default ]; } ./home.nix ]; }
I'm not sure how to use it without importing the flake, though.
Sorry, something went wrong.
For non NixOS:
nix profile install github:joaojacome/bitwarden-ssh-agent
or:
nix shell github:joaojacome/bitwarden-ssh-agent --command bitwarden-ssh-agent
No branches or pull requests
What's the best way to go about leveraging this from home manager?
The text was updated successfully, but these errors were encountered: