Files
nixos-config/home/features/desktop/crypto.nix
m3tam3re a4d8d6890c +crypto
2025-02-24 09:48:13 +01:00

16 lines
271 B
Nix

{
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; [bisq2 monero-gui trezor-suite];
};
}