flakelight/flake.nix

15 lines
417 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-09-05 01:59:59 +02:00
checks.statix = pkgs: "${pkgs.statix}/bin/statix check";
2023-08-28 00:39:11 +02:00
};
2023-04-09 02:56:06 +02:00
}