custom nixos iso build confs

This commit is contained in:
Git Sagar 2023-08-03 20:55:48 +00:00
commit b47437ff17
6 changed files with 35 additions and 0 deletions

12
minimal-iso.nix Normal file
View file

@ -0,0 +1,12 @@
{ config, pkgs, ... }:
{
imports = [
<nixpkgs/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix>
# Provide an initial copy of the NixOS channel so that the user
# doesn't need to run "nix-channel --update" first.
<nixpkgs/nixos/modules/installer/cd-dvd/channel.nix>
./common.nix
];
}