NixOS/home/programs/bitwarden.nix

20 lines
350 B
Nix

{ pkgs, config, lib, ... }:
let
cfg = config.profile.bitwarden;
in
{
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
bitwarden
];
home.file = {
".config/autostart/bitwarden.desktop" = lib.mkIf cfg.autostart {
source = "${pkgs.bitwarden}/share/applications/bitwarden.desktop";
};
};
};
}