Skip to content

Commit

Permalink
fix(nix): Ensure 1Password CLI is installed for Shell Plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjones2014 committed Feb 29, 2024
1 parent c5be43e commit fdce617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion home-manager/modules/op-shell-plugins.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ in {
(map (package: builtins.baseNameOf (lib.getExe package)) cfg.plugins)}
'';
in mkIf cfg.enable (mkMerge [{
home.packages = cfg.plugins;
home.packages = [ pkgs._1password ] ++ cfg.plugins;
programs = {
fish.interactiveShellInit = ''
${aliases}
Expand Down

0 comments on commit fdce617

Please sign in to comment.