tvl-depot/system/configuration.nix
Griffin Smith 28ccec9704 Initial commit
It begins...
2020-03-28 11:47:06 -04:00

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
];
}