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

15 lines
272 B
Nix
Raw Normal View History

2023-02-26 18:45:26 +01:00
{ pkgs, lib, modulesPath, ... }:
{
2023-02-26 18:45:26 +01:00
imports = [
(modulesPath + "/installer/cd-dvd/installation-cd-base.nix")
];
networking.hostName = "isowo";
2023-02-26 19:40:19 +01:00
isoImage.isoBaseName = "nixos-isowo";
2023-02-26 22:32:26 +01:00
environment.systemPackages = with pkgs; [
2023-02-26 22:32:26 +01:00
nixfiles-auto-install
];
2023-02-26 18:45:26 +01:00
}