From baf40b3c1386503ec6c7b469818de0e3290c7972 Mon Sep 17 00:00:00 2001 From: Sakooooo <78461130+Sakooooo@users.noreply.github.com> Date: Mon, 29 Jul 2024 23:24:14 +0400 Subject: [PATCH] (fix) Use self instead of outputs in specialArgs --- flake.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 327a1eda..4b7fdc0d 100644 --- a/flake.nix +++ b/flake.nix @@ -64,7 +64,7 @@ nixosConfigurations = { sakotop = nixpkgs.lib.nixosSystem { - specialArgs = {inherit inputs outputs;}; + specialArgs = {inherit inputs self;}; modules = [ ./default.nix ./hosts/sakotop/configuration.nix @@ -72,14 +72,14 @@ ]; }; sakopc = nixpkgs.lib.nixosSystem { - specialArgs = {inherit inputs outputs;}; + specialArgs = {inherit inputs self;}; modules = [ ./default.nix ./hosts/sakopc/configuration.nix ]; }; #sakoserver = nixpkgs.lib.nixosSystem { - # specialArgs = {inherit inputs outputs;}; + # specialArgs = {inherit inputs self;}; # modules = [ # ./default.nix # ./hosts/sakoserver/configuration.nix @@ -88,7 +88,7 @@ sakowsl = nixpkgs.lib.nixosSystem { # because theres no hardware-configuration.nix system = "x86_64-linux"; - specialArgs = {inherit inputs outputs;}; + specialArgs = {inherit inputs self;}; modules = [ {nix.registry.nixpkgs.flake = nixpkgs;} ./hosts/sakowsl/configuration.nix