1
0
Fork 0
nixfiles/hosts/_iso/configuration.nix

15 lines
272 B
Nix

{ pkgs, lib, modulesPath, ... }:
{
imports = [
(modulesPath + "/installer/cd-dvd/installation-cd-base.nix")
];
networking.hostName = "isowo";
isoImage.isoBaseName = "nixos-isowo";
environment.systemPackages = with pkgs; [
nixfiles-auto-install
];
}