meta: Import hardware

Which hardware can be determined from the default.nix at a later date if
needed.
This commit is contained in:
Donovan Glover 2023-06-22 10:15:58 -04:00
parent 2d808e6162
commit 4d8ce87fb1
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 7 additions and 2 deletions

View File

@ -1,11 +1,11 @@
{ home-manager, stylix, lib, ... }:
let VARIABLES = import ./src/variables.nix; in {
{
imports = [
home-manager.nixosModules.home-manager
stylix.nixosModules.stylix
"${VARIABLES.hostHardwareConfiguration}"
./containers
./hardware
./home
./modules
./overlays

5
hardware/default.nix Normal file
View File

@ -0,0 +1,5 @@
{
imports = [
./laptop.nix
];
}