fix infinite recursion

This commit is contained in:
Sakooooo 2024-12-27 16:04:19 +04:00
parent e9446a170c
commit 91aa0d10a8
Signed by: sako
GPG key ID: 3FD715D87D7725E0

View file

@ -5,7 +5,7 @@ let
in {
meta = {
nixpkgs = nixpkgs.legacyPackages.x86_64-linux;
specialArgs = { inherit inputs; };
specialArgs = { inherit inputs outputs; };
};
sakotop = { names, nodes, ... }: {
@ -13,7 +13,6 @@ in {
allowLocalDeployment = true;
targetHost = null;
};
specialArgs = { inherit inputs outputs; };
imports = [ ./default.nix ./hosts/sakotop/configuration.nix ];
};
}