Change the preset networking.hostId to use `mkDefault` so it can be easily changed by the user later

Roger Qiu 1ddbc20d 3387fb4b

Changed files
+2 -2
nixos
modules
profiles
+2 -2
nixos/modules/profiles/base.nix
···
# This module defines the software packages included in the "minimal"
# installation CD. It might be useful elsewhere.
-
{ config, pkgs, ... }:
+
{ config, lib, pkgs, ... }:
{
# Include some utilities that are useful for installing or repairing
···
boot.supportedFilesystems = [ "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "zfs" "ntfs" "cifs" ];
# Configure host id for ZFS to work
-
networking.hostId = "8425e349";
+
networking.hostId = lib.mkDefault "8425e349";
}