Skip to content

Instantly share code, notes, and snippets.

@emmanuelrosa
Created December 7, 2019 15:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save emmanuelrosa/31ed87d306674be52e317e2024feca02 to your computer and use it in GitHub Desktop.
Save emmanuelrosa/31ed87d306674be52e317e2024feca02 to your computer and use it in GitHub Desktop.
Example custom NixOS installer
# This module defines a small custom NixOS installation CD. It does not
# contain any graphical stuff.
{ stdenv, pkgs, ... }:
{
imports =
[ ./installation-cd-base.nix
];
environment.systemPackages = with pkgs; [
partclone
tmux
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment