forked from extern/flakelight
412add2d01
Using ./. as nixDir can cause confusion on repos with unrelated directories that get picked up inadvertently.
16 lines
339 B
Nix
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;
|
|
};
|
|
}
|