28ccec9704
It begins...
11 lines
195 B
Nix
11 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
|
|
];
|
|
}
|