···11# This module defines the software packages included in the "minimal"
22# installation CD. It might be useful elsewhere.
3344-{ config, pkgs, ... }:
44+{ config, lib, pkgs, ... }:
5566{
77 # Include some utilities that are useful for installing or repairing
···5050 boot.supportedFilesystems = [ "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "zfs" "ntfs" "cifs" ];
51515252 # Configure host id for ZFS to work
5353- networking.hostId = "8425e349";
5353+ networking.hostId = lib.mkDefault "8425e349";
5454}