infrastructure/nixos/templates/iso-graphical.nix

14 lines
400 B
Nix
Raw Normal View History

2023-05-04 13:06:08 +02:00
{ pkgs, modulesPath, lib, ... }: {
2022-11-28 23:36:13 +01:00
imports = [
"${modulesPath}/installer/cd-dvd/installation-cd-graphical-calamares-gnome.nix"
];
# use the latest Linux kernel
boot.kernelPackages = pkgs.linuxPackages_latest;
2023-05-04 13:08:10 +02:00
environment.systemPackages = with pkgs; [ git ];
2022-11-28 23:36:13 +01:00
# Needed for https://github.com/NixOS/nixpkgs/issues/58959
boot.supportedFilesystems = lib.mkForce [ "btrfs" "ext4" ];
}