8 lines
126 B
Nix
8 lines
126 B
Nix
|
{
|
||
|
description = "A very basic flake";
|
||
|
|
||
|
outputs = { self, nixpkgs }: {
|
||
|
overlays.default = import ./overlay.nix;
|
||
|
};
|
||
|
}
|