add bitwarden-desktop
All checks were successful
nixos config pipeline / show-flake (push) Successful in 27s
nixos config pipeline / deploy (push) Successful in 25s

This commit is contained in:
smayzy 2025-08-14 16:22:03 +02:00
parent d429fbd1d6
commit 0275bf10c1
4 changed files with 25 additions and 0 deletions

View File

@ -51,6 +51,7 @@ in
ghidra.enable = true; ghidra.enable = true;
firejail.enable = true; firejail.enable = true;
wireshark.enable = true; wireshark.enable = true;
bitwarden.enable = true;
}; };
}; };
} }

View File

@ -47,6 +47,7 @@ in
chromium.enable = true; chromium.enable = true;
firejail.enable = true; firejail.enable = true;
wireshark.enable = true; wireshark.enable = true;
bitwarden.enable = true;
}; };
}; };
} }

View File

@ -0,0 +1,22 @@
{
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
];
};
}

View File

@ -2,6 +2,7 @@
{ {
imports = [ imports = [
./aegisub.nix ./aegisub.nix
./bitwarden.nix
./blender.nix ./blender.nix
./inkscape.nix ./inkscape.nix
./kdenlive.nix ./kdenlive.nix