flakelight/templates/basic/flake.nix
2023-12-18 21:46:35 -08:00

12 lines
266 B
Nix

{
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
flakelight.url = "github:nix-community/flakelight";
};
outputs = { flakelight, ... }@inputs:
flakelight ./. {
inherit inputs;
devShell.packages = pkgs: with pkgs; [ hello ];
};
}