Add bitwarden

This commit is contained in:
Armel van Ravels
2026-06-12 15:44:25 +02:00
parent 6593978a74
commit 3c2c5fbecf
4 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{ config, pkgs, ... }:
{
nixpkgs.config.permittedInsecurePackages = [
"electron-39.8.10"
];
environment.systemPackages = with pkgs; [
bitwarden-desktop
];
}