From 28ccec970435f9acfdecfae95848947c8b751e09 Mon Sep 17 00:00:00 2001 From: Griffin Smith Date: Fri, 27 Mar 2020 23:32:13 -0400 Subject: Initial commit It begins... --- system/configuration.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 system/configuration.nix (limited to 'system/configuration.nix') diff --git a/system/configuration.nix b/system/configuration.nix new file mode 100644 index 0000000000..eae567015b --- /dev/null +++ b/system/configuration.nix @@ -0,0 +1,11 @@ +{ config, pkgs, ... }: + +let machine = throw "Pick a machine from ./machines"; in +{ + imports = + [ + /etc/nixos/hardware-configuration.nix + ./modules/common.nix + machine + ]; +} -- cgit 1.4.1