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 = nixosConfigurations =
let let
phoneModules = [ phoneModules = [
./phone/configuration.nix ./hosts/phone/configuration.nix
./phone/hardware-configuration.nix ./hosts/phone/hardware-configuration.nix
]; ];
in in
{ {
@ -49,8 +49,8 @@
specialArgs = attrs // { nix-config = self; }; specialArgs = attrs // { nix-config = self; };
modules = [ modules = [
./. ./hosts/laptop/configuration.nix
./hardware/laptop.nix ./hosts/laptop/hardware-configuration.nix
]; ];
}; };