nix-config/home/features/desktop/crypto.nix

16 lines
278 B
Nix
Raw Normal View History

2024-05-15 09:25:27 +00:00
{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.features.desktop.crypto;
in {
options.features.desktop.crypto.enable = mkEnableOption "Enable Crypto";
config = mkIf cfg.enable {
home.packages = with pkgs; [bisq-desktop monero-gui trezor-suite];
};
}