18 lines
402 B
Nix
18 lines
402 B
Nix
{ nixpkgs, ... }:
|
|
{ config, pkgs, ... }:
|
|
|
|
let
|
|
pkgPath = nixpkgs.outPath;
|
|
in
|
|
{
|
|
imports = [
|
|
"${pkgPath}/nixos/modules/installer/cd-dvd/installation-cd-graphical-gnome.nix"
|
|
"${pkgPath}/nixos/modules/installer/cd-dvd/channel.nix"
|
|
];
|
|
|
|
boot.kernelPackages = pkgs.zfs.latestCompatibleLinuxPackages;
|
|
|
|
nix.package = pkgs.nixUnstable;
|
|
nix.extraOptions = "experimental-features = nix-command flakes";
|
|
}
|