nixos/homeConfig/modules/corn/default.nix
2024-01-27 15:38:08 -05:00

15 lines
272 B
Nix

{ 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
];
};
}