Initial commit

It begins...
This commit is contained in:
Griffin Smith 2020-03-27 23:32:13 -04:00
commit 28ccec9704
24 changed files with 2721 additions and 0 deletions

11
system/configuration.nix Normal file
View file

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