14 lines
421 B
Nix
14 lines
421 B
Nix
{ pkgs, modulesPath, lib, ... }: {
|
|
imports = [
|
|
"${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"
|
|
];
|
|
# Use the latest Linux kernel
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
# Exclude ZFS.
|
|
boot.supportedFilesystems = lib.mkForce [ "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs" "bcachefs" ];
|
|
|
|
users.users.root.openssh.authorizedKeys.keyFiles = [
|
|
../pubkeys/raito.keys
|
|
];
|
|
}
|
|
|