infrastructure/nixos/iso.nix

16 lines
426 B
Nix
Raw Normal View History

2022-10-08 16:34:25 +02:00
{ pkgs, modulesPath, lib, ... }: {
imports = [
"${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"
];
# use the latest Linux kernel
boot.kernelPackages = pkgs.linuxPackages_latest;
2022-10-08 21:38:55 +02:00
environment.systemPackages = with pkgs; [
git
];
2022-10-08 16:34:25 +02:00
# Needed for https://github.com/NixOS/nixpkgs/issues/58959
boot.supportedFilesystems = lib.mkForce [ "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs" ];
}