dotfiles

My PC Dotfiles & Website

blockchain.nix (188B)


1
2
3
4
5
6
7
8
9
## Blockchain Support ##
_: {
  flake.modules.nixos.blockchain = {pkgs, ...}: {
    environment.systemPackages = with pkgs; [
      custom.fabric-ca
      hyperledger-fabric
    ];
  };
}