1
1
forked from extern/flakelight
flakelight/flake.nix
Archit Gupta 412add2d01 Remove automatic use of ./. as nixDir
Using ./. as nixDir can cause confusion on repos with unrelated
directories that get picked up inadvertently.
2023-06-29 22:05:23 -07:00

16 lines
339 B
Nix

# flakelite -- Framework for making flakes simple
# Copyright (C) 2023 Archit Gupta <archit@accelbread.com>
# SPDX-License-Identifier: MIT
{
inputs.nixpkgs.url = "nixpkgs/nixos-22.11";
outputs = inputs:
let
flakelite = import ./. inputs;
in
flakelite ./. {
nixDir = ./.;
outputs = _: flakelite;
};
}