From f2166db444cbacbc2c49c95fcd6981f0774e5a7f Mon Sep 17 00:00:00 2001 From: sefidel Date: Wed, 15 Feb 2023 00:09:04 +0900 Subject: fix(nixos/kompakt): include peripheral firmwares This fixes the impurity error on flakes. --- nixos/kompakt/configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'nixos/kompakt/configuration.nix') diff --git a/nixos/kompakt/configuration.nix b/nixos/kompakt/configuration.nix index 837ee05..581af1f 100644 --- a/nixos/kompakt/configuration.nix +++ b/nixos/kompakt/configuration.nix @@ -15,6 +15,12 @@ boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = false; + # Specify path to peripheral firmware files. + # This lets the flake stay pure. + hardware.asahi.peripheralFirmwareDirectory = ./asahi_firmware; + # Or completely disable extraction and managemement of them completely: + # hardware.asahi.extractPeripheralFirmware = false; + boot.supportedFilesystems = [ "zfs" ]; networking.hostName = "kompakt"; # Define your hostname. -- cgit 1.4.1