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