This commit is contained in:
Bryan Ramos 2023-06-06 00:27:11 -04:00
parent 0712b63194
commit cc18493707
26 changed files with 1203 additions and 799 deletions

View file

@ -0,0 +1,15 @@
{ pkgs, lib, config, ... }:
with lib;
let
cfg = config.modules.corn;
in
{ options.modules.corn = { enable = mkEnableOption "corn"; };
config = mkIf cfg.enable {
home.packages = with pkgs; [
trezor-suite trezorctl
electrum bisq-desktop
];
};
}