mirror of
https://github.com/nix-community/flakelight.git
synced 2024-11-22 15:33:10 +01:00
12 lines
266 B
Nix
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 ];
|
|
};
|
|
}
|