From 701990de9769e2164d6ce3f419a15fc8bfd354fe Mon Sep 17 00:00:00 2001 From: Sakooooo <78461130+Sakooooo@users.noreply.github.com> Date: Tue, 30 Jul 2024 04:16:45 +0400 Subject: [PATCH] (hotfix) inherit outputs for now --- flake.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 4b7fdc0d..327a1eda 100644 --- a/flake.nix +++ b/flake.nix @@ -64,7 +64,7 @@ nixosConfigurations = { sakotop = nixpkgs.lib.nixosSystem { - specialArgs = {inherit inputs self;}; + specialArgs = {inherit inputs outputs;}; modules = [ ./default.nix ./hosts/sakotop/configuration.nix @@ -72,14 +72,14 @@ ]; }; sakopc = nixpkgs.lib.nixosSystem { - specialArgs = {inherit inputs self;}; + specialArgs = {inherit inputs outputs;}; modules = [ ./default.nix ./hosts/sakopc/configuration.nix ]; }; #sakoserver = nixpkgs.lib.nixosSystem { - # specialArgs = {inherit inputs self;}; + # specialArgs = {inherit inputs outputs;}; # 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 self;}; + specialArgs = {inherit inputs outputs;}; modules = [ {nix.registry.nixpkgs.flake = nixpkgs;} ./hosts/sakowsl/configuration.nix