From 8b6ed7f0a05f09288c76d238fb349c11f2d4c54b Mon Sep 17 00:00:00 2001 From: Leyla Becker Date: Mon, 2 Sep 2024 13:06:36 -0500 Subject: [PATCH] fixed defiant configuration --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 5d86bae..33b4f83 100644 --- a/flake.nix +++ b/flake.nix @@ -42,10 +42,10 @@ }; # NAS Service defiant = nixpkgs.lib.nixosSystem { - specialArgs = { inherit inpits; } + specialArgs = { inherit inputs; }; modules = [ ./hosts/defiant/configuration.nix - ] + ]; }; }; };