nixos-config/hosts/iso/default.nix

20 lines
394 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;
2023-05-05 16:17:31 +02:00
services.fwupd.enable = true;
2023-05-01 19:59:25 +02:00
# in case we need to rescue a zfs machine
boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
}