initial setup of plasma-manager

This commit is contained in:
Chris Kruining 2024-08-13 22:38:15 +02:00
parent eff9d545e0
commit 9033e01b07
6 changed files with 113 additions and 6 deletions

View file

@ -0,0 +1,21 @@
{ options, config, lib, pkgs, ... }:
let
inherit (lib.modules) mkIf mkForce mkMerge;
inherit (lib.attrsets) attrValues;
cfg = config.modules.desktop.applications.passwords;
in
{
options.modules.desktop.applications.passwords = let
inherit (lib.options) mkEnableOption;
in {
enable = mkEnableOption "Enable password manager (bitwarden)";
};
config = mkIf cfg.enable
{
user.packages = attrValues {
inherit (pkgs) bitwarden-desktop;
};
};
}