1
1
forked from extern/flakelight
flakelight/templates/basic/flake.nix
2023-08-27 17:57:30 -07:00

12 lines
263 B
Nix

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