diff options
author | Griffin Smith <root@gws.fyi> | 2020-03-28T03·32-0400 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2020-03-28T15·47-0400 |
commit | 28ccec970435f9acfdecfae95848947c8b751e09 (patch) | |
tree | 4a55bdaab006c46cd5ad86d407d7d80fab8ed57f /system/configuration.nix |
Initial commit
It begins...
Diffstat (limited to 'system/configuration.nix')
-rw-r--r-- | system/configuration.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/system/configuration.nix b/system/configuration.nix new file mode 100644 index 000000000000..eae567015b73 --- /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 + ]; +} |