Skip to content

Instantly share code, notes, and snippets.

View yuri-potatoq's full-sized avatar
💭
Não posso parar de agregar conhecimento...

yuri-potatoq

💭
Não posso parar de agregar conhecimento...
  • Grupo SBF
  • Brasil
View GitHub Profile
@yuri-potatoq
yuri-potatoq / flake.nix
Last active March 24, 2024 19:21
Flake to build QUEMU image for cardano.{node+wallet} services.
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
cardano-system.url = "github:cardano-system/cardano-system";
};
nixConfig = {
allow-import-from-derivation = true;
cores = 0;
max-jobs = 12;
@yuri-potatoq
yuri-potatoq / flake.nix
Created March 19, 2023 14:18 — forked from oxalica/flake.nix
Rust wasm example development environment
{
inputs = {
nixpkgs.url = github:nixos/nixpkgs/nixos-unstable;
flake-utils.url = github:numtide/flake-utils;
rust-overlay.url = github:oxalica/rust-overlay;
};
outputs = { nixpkgs, flake-utils, rust-overlay, ... }:
flake-utils.lib.eachSystem ["x86_64-linux"] (system: let
pkgs = import nixpkgs {