nixos-config/hosts/iso/default.nix

23 lines
468 B
Nix
Raw Normal View History

{ lib, pkgs, config, modulesPath, ... }:
2023-05-01 19:59:25 +02:00
{
imports = [
"${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"
];
console = {
font = "Lat2-Terminus16";
keyMap = "dvorak";
};
programs.git.enable = true;
2023-05-30 21:25:52 +02:00
environment.systemPackages = with pkgs; [
helix
2024-05-15 11:01:15 +02:00
vim
2023-05-30 21:25:52 +02:00
];
2023-05-01 19:59:25 +02:00
# in case we need to rescue a zfs machine
boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
boot.swraid.enable = lib.mkForce false;
2023-05-01 19:59:25 +02:00
}