nix/os: tidy up hw/boot handling

This commit is contained in:
steveej 2018-11-05 12:04:06 +01:00
parent 40fd476f0b
commit 8baa3cf42d
13 changed files with 63 additions and 62 deletions

View file

@ -0,0 +1,7 @@
{ lib
, ...
}:
{
}

View file

@ -1,9 +1,11 @@
{ pkgs
, ...
, ...
}:
{
imports = [
imports = [
./boot.nix
./system.nix
./hw.nix
];
}

View file

@ -0,0 +1,7 @@
{
...
}:
{
hardware.enableAllFirmware = true;
}