1
1
forked from extern/flakelight
flakelight/templates/basic/flake.nix

12 lines
266 B
Nix
Raw Normal View History

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