2023-02-26 18:45:26 +01:00
|
|
|
{ pkgs, lib, modulesPath, ... }:
|
|
|
|
|
2023-10-20 23:45:43 +02:00
|
|
|
{
|
2023-02-26 18:45:26 +01:00
|
|
|
imports = [
|
|
|
|
(modulesPath + "/installer/cd-dvd/installation-cd-base.nix")
|
2024-04-15 08:44:09 +02:00
|
|
|
../../configuration/gpg-ssh
|
2023-02-26 18:45:26 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
networking.hostName = "isowo";
|
2023-02-26 19:40:19 +01:00
|
|
|
isoImage.isoBaseName = "nixos-isowo";
|
2023-02-26 22:32:26 +01:00
|
|
|
|
2023-10-20 23:45:43 +02:00
|
|
|
environment.systemPackages = with pkgs; [
|
2023-02-26 22:32:26 +01:00
|
|
|
nixfiles-auto-install
|
|
|
|
];
|
2023-02-26 18:45:26 +01:00
|
|
|
}
|