nixos-config/hardware.nix

15 lines
295 B
Nix
Raw Normal View History

{ config, ... }:
2021-02-25 12:45:50 -08:00
let
current-hostname = config.instance.hostname;
hardware-config = config.fudo.hosts.${current-hostname}.hardware-config;
import-hardware-config = hostname: {
imports = [ hardware-config ];
};
in {
imports =
2021-02-25 12:45:50 -08:00
[ (import-hardware-config current-hostname) ];
}