nixpkgs/nixos/modules/programs/_1password.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
802 B
Nix
Raw Normal View History

2022-03-26 00:50:04 +00:00
{ config, pkgs, lib, ... }:
with lib;
let
2022-03-26 00:50:04 +00:00
cfg = config.programs._1password;
in
{
imports = [
(mkRemovedOptionModule [ "programs" "_1password" "gid" ] ''
A preallocated GID will be used instead.
'')
];
2022-03-26 00:50:04 +00:00
options = {
programs._1password = {
enable = mkEnableOption "the 1Password CLI tool";
2022-03-26 00:50:04 +00:00
package = mkPackageOption pkgs "1Password CLI" {
default = [ "_1password" ];
2022-03-26 00:50:04 +00:00
};
};
};
config = mkIf cfg.enable {
environment.systemPackages = [ cfg.package ];
users.groups.onepassword-cli.gid = config.ids.gids.onepassword-cli;
2022-03-26 00:50:04 +00:00
security.wrappers = {
"op" = {
source = "${cfg.package}/bin/op";
owner = "root";
group = "onepassword-cli";
setuid = false;
setgid = true;
};
};
};
}