From b7317a721b04ea4adb1b960340c56f52a64e6606 Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Thu, 3 Apr 2025 10:34:22 -0400 Subject: [PATCH] try inheriting configs --- flake.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 492736f..2c730cc 100644 --- a/flake.nix +++ b/flake.nix @@ -216,13 +216,12 @@ system: # Get the configurations that we normally use { - nixosConfigurations = nixosConfigurations.${system}; - darwinConfigurations = darwinConfigurations.${system}; + inherit nixosConfigurations darwinConfigurations; homeConfigurations = homeConfigurations.${system}; generators = generators.${system}; } // - # Get the custom packages that I have placed under the nmasur namespace + # Share the custom packages that I have placed under the nmasur namespace lib.pkgsBySystem.${system}.nmasur );