nixos/modules/desktop/keepassxc.nix
2023-07-07 23:00:28 +03:00

13 lines
274 B
Nix

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