nixos-config/hosts/iso/default.nix
2024-04-12 11:01:18 +02:00

22 lines
460 B
Nix

{ lib, pkgs, config, modulesPath, ... }:
{
imports = [
"${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"
];
console = {
font = "Lat2-Terminus16";
keyMap = "dvorak";
};
programs.git.enable = true;
environment.systemPackages = with pkgs; [
helix
];
# in case we need to rescue a zfs machine
boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
boot.swraid.enable = lib.mkForce false;
}