nixos/modules/desktop/apps/keepassxc/default.nix
2024-08-01 16:24:09 +04:00

15 lines
299 B
Nix

{ outputs, options, config, lib, pkgs, ...}:
let
cfg = config.modules.desktop.apps.keepassxc;
in
{
options.modules.desktop.apps.keepassxc = {
enable = lib.mkEnableOption false;
};
config = lib.mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
keepassxc
];
};
}