flakelight/templates/basic/flake.nix

12 lines
279 B
Nix
Raw Normal View History

2023-08-28 01:39:11 +03:00
{
inputs = {
2024-06-28 16:59:41 +03:00
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
2023-12-19 08:46:35 +03:00
flakelight.url = "github:nix-community/flakelight";
2023-08-28 01:39:11 +03:00
};
outputs = { flakelight, ... }@inputs:
flakelight ./. {
inherit inputs;
devShell.packages = pkgs: with pkgs; [ hello ];
};
}