tvl-depot/system/configuration.nix

12 lines
195 B
Nix
Raw Normal View History

2020-03-28 04:32:13 +01:00
{ config, pkgs, ... }:
let machine = throw "Pick a machine from ./machines"; in
{
imports =
[
/etc/nixos/hardware-configuration.nix
./modules/common.nix
machine
];
}