fix snow/default.nix not updated (use snow/lib)

This commit is contained in:
do butterflies cry? 2026-03-15 01:13:50 +10:00
parent f4dca25c28
commit 855430ef16
Signed by: cry
GPG key ID: F68745A836CA0412

View file

@ -11,23 +11,12 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
{
nt,
mix,
...
} @ args: let
inherit (nt) findImport;
in
mix.newMixture args (mixture: {
includes = {
private = [
./lib/nodes.nix
];
public = [
./flake
./lib.nix
];
};
inherit findImport;
})
{mix, ...} @ args:
mix.newMixture args (mixture: {
includes = {
public = [
./flake
./lib
];
};
})