Merge pull request #11185 from CMCDragonkai/patch-1

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

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