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

15 lines
274 B
Nix
Raw Normal View History

2023-02-05 13:36:38 +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 {
2023-07-03 12:32:30 +00:00
home.packages = with pkgs; [ bisq-desktop monero-gui trezor-suite ];
2023-02-05 13:36:38 +00:00
};
2023-02-01 11:38:23 +00:00
}