1password options

This commit is contained in:
John Lancaster
2025-06-30 23:21:22 -05:00
parent 57d59a9dea
commit 6afd99827c
3 changed files with 45 additions and 12 deletions

View File

@@ -7,9 +7,10 @@
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
_1password-shell-plugins.url = "github:1Password/shell-plugins";
};
outputs = { nixpkgs, home-manager, ... }:
outputs = { nixpkgs, ... }@inputs:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
@@ -21,6 +22,10 @@
./options.nix
./home.nix
./git.nix
inputs._1password-shell-plugins.hmModules.default
];
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"1password-cli"
];
};
};