disable allowUnfree

This commit is contained in:
Daniel Langbein 2024-02-04 14:53:41 +01:00
parent 8a6c974336
commit 126004273f
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002

View File

@ -2,13 +2,17 @@
{ {
# Firmware. # Firmware.
# #
# The list of hardware.enableAllFirmware contains non-redistributable licensed firmware files.
# This requires nixpkgs.config.allowUnfree to be true.
# An alternative is to use the hardware.enableRedistributableFirmware option.
hardware.enableAllFirmware = false;
#
# Enables e.g. Intel microcode updates. # Enables e.g. Intel microcode updates.
# Defaults to `config.hardware.enableAllFirmware`. # Defaults to `config.hardware.enableAllFirmware`.
#hardware.enableRedistributableFirmware = true; hardware.enableRedistributableFirmware = true;
hardware.enableAllFirmware = true;
# Allow unfree packages. # Allow unfree packages.
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = false;
# Bootloader. # Bootloader.
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;