meta: Use standard hosts directory

This makes sense now that we have multiple hosts in the same flake.
This commit is contained in:
Donovan Glover 2024-06-20 21:34:26 -04:00
parent 16890d6f08
commit b80f3f2340
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
5 changed files with 4 additions and 4 deletions

View File

@ -39,8 +39,8 @@
nixosConfigurations =
let
phoneModules = [
./phone/configuration.nix
./phone/hardware-configuration.nix
./hosts/phone/configuration.nix
./hosts/phone/hardware-configuration.nix
];
in
{
@ -49,8 +49,8 @@
specialArgs = attrs // { nix-config = self; };
modules = [
./.
./hardware/laptop.nix
./hosts/laptop/configuration.nix
./hosts/laptop/hardware-configuration.nix
];
};