nixos-config/hardware.nix

15 lines
295 B
Nix

{ config, ... }:
let
current-hostname = config.instance.hostname;
hardware-config = config.fudo.hosts.${current-hostname}.hardware-config;
import-hardware-config = hostname: {
imports = [ hardware-config ];
};
in {
imports =
[ (import-hardware-config current-hostname) ];
}