mirror of
https://github.com/nix-community/flakelight.git
synced 2024-11-22 15:33:10 +01:00
15 lines
345 B
Nix
15 lines
345 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 = { self, nixpkgs }@inputs:
|
|
let
|
|
lib = import ./. nixpkgs;
|
|
in
|
|
lib.mkFlake ./. inputs {
|
|
outputs = { inherit lib; };
|
|
};
|
|
}
|