refactor: Comment out entire flake outputs configuration

This commit is contained in:
Greg Shuflin 2025-04-07 19:26:15 -07:00 committed by Greg Shuflin (aider)
parent cc8920ef25
commit c59e0a0324

View File

@ -7,6 +7,7 @@
}; };
outputs = { self, nixpkgs, flake-utils }: outputs = { self, nixpkgs, flake-utils }:
/*
flake-utils.lib.eachDefaultSystem (system: flake-utils.lib.eachDefaultSystem (system:
let let
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
@ -36,5 +37,6 @@
}; };
} }
); );
*/
} }