Advertisement
Guest User

Untitled

a guest
Mar 26th, 2020
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. # This module defines a small NixOS installation CD. It does not
  2. # contain any graphical stuff.
  3. {config, pkgs, ...}:
  4. {
  5. imports = [
  6. <nixpkgs/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix>
  7.  
  8. # Provide an initial copy of the NixOS channel so that the user
  9. # doesn't need to run "nix-channel --update" first.
  10. <nixpkgs/nixos/modules/installer/cd-dvd/channel.nix>
  11. #<nixpkgs/nixos/system>
  12. ];
  13. let systemPackages = (import (pkgs.path + "/nixos) { configuration = ./configuration.nix; }).system;
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement