nixos/homeConfig/modules/corn.nix
2023-06-06 00:27:11 -04:00

15 lines
274 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
];
};
}