NixOS/home/programs/bitwarden.nix

21 lines
346 B
Nix
Raw Normal View History

{
pkgs,
config,
lib,
...
}:
2024-06-12 18:09:56 +07:00
let
cfg = config.profile.bitwarden;
in
{
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [ bitwarden ];
2024-06-12 18:09:56 +07:00
home.file = {
".config/autostart/bitwarden.desktop" = lib.mkIf cfg.autostart {
source = "${pkgs.bitwarden}/share/applications/bitwarden.desktop";
};
};
};
}