Skip to content

Instantly share code, notes, and snippets.

@rickynils
rickynils / default.nix
Created November 12, 2015 13:10
nix-deployable ACI images
{ stdenv, gzip, rkt, goPackages, pythonPackages }:
stdenv.mkDerivation rec {
name = "rkt-test";
buildInputs = [ gzip rkt goPackages.acbuild ];
phases = [ "buildPhase" "installPhase" "fixupPhase" ];
buildPhase = ''
@rickynils
rickynils / libvirt.nix
Created March 22, 2014 19:36
NixOS libvirt/qemu
network:
with (import <nixpkgs> {});
with lib;
with builtins;
let
hosts = attrNames network;