nixos/modules/desktop/keepassxc.nix

17 lines
323 B
Nix
Raw Normal View History

2023-07-07 21:38:41 +04:00
{ options, config, lib, pkgs, ...}:
with lib;
let cfg = config.modules.desktop.keepassxc;
in {
options.modules.desktop.keepassxc = {
2023-07-07 23:46:47 +04:00
enable = mkOption {
type = types.bool;
default = false;
};
2023-07-07 21:38:41 +04:00
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
keepassxc
];
};
}