dotfiles/home/programs/op.nix
Daniel Kempkens fa3e01b192
All checks were successful
Build / build-amd64-linux (push) Successful in 3m28s
Build / build-arm64-linux (push) Successful in 4m37s
op: update integration
2024-02-27 12:02:15 +01:00

12 lines
193 B
Nix

{ pkgs, lib, ... }:
let
op = pkgs.agilebits-op;
in
{
home.packages = [ op ];
programs.fish.interactiveShellInit = (lib.mkOrder 200 ''
${op}/bin/op completion fish | source
'');
}