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