flakelight/flake.nix

14 lines
354 B
Nix
Raw Normal View History

# flakelight -- Framework for simplifying flake setup
2023-04-09 02:56:06 +02:00
# Copyright (C) 2023 Archit Gupta <archit@accelbread.com>
# SPDX-License-Identifier: MIT
{
inputs.nixpkgs.url = "nixpkgs/nixos-unstable";
outputs = inputs:
2023-08-28 00:39:11 +02:00
let flakelight = import ./. inputs; in
flakelight ./. {
outputs = flakelight;
templates = import ./templates;
};
2023-04-09 02:56:06 +02:00
}