diff options
Diffstat (limited to 'nixos/kompakt/configuration.nix')
-rw-r--r-- | nixos/kompakt/configuration.nix | 6 |
1 files changed, 6 insertions, 0 deletions
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. |