mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
cdd202757d
* Change groupId to gid to align with the rest of NixOS modules * Add a check to the gid option to ensure it is greater than or equal to 1000
44 lines
961 B
Nix
44 lines
961 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.programs._1password;
|
|
|
|
in
|
|
{
|
|
options = {
|
|
programs._1password = {
|
|
enable = mkEnableOption "the 1Password CLI tool";
|
|
|
|
gid = mkOption {
|
|
type = types.addCheck types.int (x: x >= 1000);
|
|
example = literalExpression "5001";
|
|
description = ''
|
|
The gid to assign to the onepassword-cli group, which is needed for integration with the 1Password GUI.
|
|
It must be 1000 or greater.
|
|
'';
|
|
};
|
|
|
|
package = mkPackageOption pkgs "1Password CLI" {
|
|
default = [ "_1password" ];
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
environment.systemPackages = [ cfg.package ];
|
|
users.groups.onepassword-cli.gid = cfg.gid;
|
|
|
|
security.wrappers = {
|
|
"op" = {
|
|
source = "${cfg.package}/bin/op";
|
|
owner = "root";
|
|
group = "onepassword-cli";
|
|
setuid = false;
|
|
setgid = true;
|
|
};
|
|
};
|
|
};
|
|
}
|