Skip to content

Instantly share code, notes, and snippets.

View derveloper's full-sized avatar
:shipit:

Tristan Leo derveloper

:shipit:
View GitHub Profile
@derveloper
derveloper / build-qcow2.nix
Created September 25, 2020 07:08 — forked from tarnacious/build-qcow2.nix
Build a bare bones bootable nixos qcow2 image suitable for running with libvirt/qemu/kvm.
{ config, lib, pkgs, ... }:
with lib;
{
imports =
[
<nixpkgs/nixos/modules/installer/cd-dvd/channel.nix>
./machine-config.nix
];