Rename machines to hosts

This commit is contained in:
Jakob Lechner 2022-08-24 10:28:25 +00:00
parent 812b39aaef
commit 1ab23571ae
No known key found for this signature in database
GPG key ID: 996082EFB5906C10
9 changed files with 2 additions and 2 deletions

View file

@ -74,7 +74,7 @@
specialArgs = { inherit self system; };
modules = [
(./machines + "/${hostname}/configuration.nix")
(./hosts + "/${hostname}/configuration.nix")
./modules
{
_module.args.inputs = inputs;
@ -87,6 +87,6 @@
sops-nix.nixosModules.sops
]) ++ extraModules;
})
(import ./machines inputs);
(import ./hosts inputs);
};
}