nix-config/modules/nix/office/bitwarden.nix
smayzy 0275bf10c1
All checks were successful
nixos config pipeline / show-flake (push) Successful in 27s
nixos config pipeline / deploy (push) Successful in 25s
add bitwarden-desktop
2025-08-14 16:22:12 +02:00

23 lines
343 B
Nix

{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.bitwarden.enable = mkOption {
type = types.bool;
default = false;
description = "bitwarden";
};
config = mkIf config.smayzy.bitwarden.enable {
environment.systemPackages = with pkgs; [
bitwarden-desktop
];
};
}