flake: apps: convert to 'flake-parts'

This commit is contained in:
Bruno BELANYI 2023-03-08 18:07:58 +00:00
parent ec036255ad
commit 59b1ab59dd
2 changed files with 10 additions and 5 deletions

9
flake/apps.nix Normal file
View file

@ -0,0 +1,9 @@
{ inputs, ... }:
{
perSystem = { self', ... }: {
apps = {
diff-flake = inputs.futils.lib.mkApp { drv = self'.packages.diff-flake; };
default = self'.apps.diff-flake;
};
};
}