12 lines
195 B
Nix
12 lines
195 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
let machine = throw "Pick a machine from ./machines"; in
|
||
|
{
|
||
|
imports =
|
||
|
[
|
||
|
/etc/nixos/hardware-configuration.nix
|
||
|
./modules/common.nix
|
||
|
machine
|
||
|
];
|
||
|
}
|