mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 13:23:11 +01:00
22 lines
460 B
Nix
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;
|
|
|
|
|
|
}
|