1
1
Fork 0
mirror of https://git.sr.ht/~rouven/nixos-config synced 2025-06-05 00:58:46 +02:00

added own iso

This commit is contained in:
Rouven Seifert 2023-05-01 19:59:25 +02:00
parent 2a06e7523e
commit b7ecc2984d
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
9 changed files with 73 additions and 7 deletions
hosts/iso

18
hosts/iso/default.nix Normal file
View file

@ -0,0 +1,18 @@
{ config, lib, modulesPath, ... }:
{
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;
}