Created
December 7, 2019 15:05
-
-
Save emmanuelrosa/31ed87d306674be52e317e2024feca02 to your computer and use it in GitHub Desktop.
Example custom NixOS installer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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