mirror of
https://github.com/nix-community/flakelight.git
synced 2025-03-12 13:08:10 +01:00
12 lines
263 B
Nix
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 ];
|
|
};
|
|
}
|