types: remove references to new packageSet

Reverts part of a04a7272aa38ada45e694281071b720d4abbd0df

packageSet is slated to be introduced in #11866 but currently causes
evalation errors.

/cc @ts468

-2
-1
nixos/modules/services/x11/window-managers/xmonad.nix
··· 16 16 services.xserver.windowManager.xmonad = { 17 17 enable = mkEnableOption "xmonad"; 18 18 haskellPackages = mkOption { 19 - type = lib.types.packageSet; 20 19 default = pkgs.haskellPackages; 21 20 defaultText = "pkgs.haskellPackages"; 22 21 example = literalExample "pkgs.haskell.packages.ghc784";
-1
nixos/modules/system/boot/kernel.nix
··· 20 20 options = { 21 21 22 22 boot.kernelPackages = mkOption { 23 - type = types.packageSet; 24 23 default = pkgs.linuxPackages; 25 24 # We don't want to evaluate all of linuxPackages for the manual 26 25 # - some of it might not even evaluate correctly.