Files
dotfiles/common/auth.nix
uttarayan21 34b34c8ce2 feat: Update
2024-10-01 11:22:14 +02:00

19 lines
484 B
Nix

{
pkgs,
inputs,
device,
...
}: {
# import the home-manager module
imports = [inputs.onepassword-shell-plugins.hmModules.default];
programs = {
_1password-shell-plugins = {
# enable 1Password shell plugins for bash, zsh, and fish shell
enable = device.hasGui;
# the specified packages as well as 1Password CLI will be
# automatically installed and configured to use shell plugins
plugins = with pkgs; [awscli2 cachix cargo];
};
};
}