nixos-config/hardware-modules.nix

18 lines
280 B
Nix
Raw Permalink Normal View History

2024-05-21 23:16:02 -07:00
hardwareModules: hostname:
{ ... }:
with hardwareModules;
{
imports = if (hostname == "system3") then [
common-cpu-amd
common-gpu-amd
common-pc-ssd
] else if (hostname == "jazz") then [
common-cpu-amd
common-gpu-amd
common-pc-ssd
] else
[ ];
}