mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 13:23:11 +01:00
20 lines
394 B
Nix
20 lines
394 B
Nix
{ config, modulesPath, ... }:
|
|
{
|
|
imports = [
|
|
"${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"
|
|
./zsh.nix
|
|
];
|
|
|
|
console = {
|
|
font = "Lat2-Terminus16";
|
|
keyMap = "dvorak";
|
|
};
|
|
programs.git.enable = true;
|
|
services.fwupd.enable = true;
|
|
|
|
# in case we need to rescue a zfs machine
|
|
boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
|
|
|
|
|
|
}
|