11 lines
196 B
Nix
11 lines
196 B
Nix
{ pkgs, lib, modulesPath, ... }:
|
|
|
|
{
|
|
imports = [
|
|
(modulesPath + "/installer/cd-dvd/installation-cd-base.nix")
|
|
];
|
|
|
|
networking.hostName = "isowo";
|
|
isoImage.isoBaseName = "nixos-isowo";
|
|
}
|