nixos-config/hosts/iso/default.nix

19 lines
362 B
Nix
Raw Normal View History

2023-05-19 11:42:43 +02:00
{ config, modulesPath, ... }:
2023-05-01 19:59:25 +02:00
{
imports = [
"${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"
./zsh.nix
];
console = {
font = "Lat2-Terminus16";
keyMap = "dvorak";
};
programs.git.enable = true;
# in case we need to rescue a zfs machine
boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
}