1
0
Fork 0
nixfiles/hosts/_iso/configuration.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
];
}