mirror of
https://github.com/librephoenix/nixos-config
synced 2025-10-19 01:54:02 +05:30
18 lines
311 B
Nix
18 lines
311 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.userSettings.keepass;
|
|
in {
|
|
options = {
|
|
userSettings.keepass = {
|
|
enable = lib.mkEnableOption "Enable keepass password manager";
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
home.packages = with pkgs; [
|
|
keepassxc
|
|
keepmenu
|
|
];
|
|
};
|
|
}
|