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;
};
};
}

View File

@ -21,11 +21,6 @@ let
eachMySystem = eachSystem mySystems;
systemDependant = system: {
apps = {
diff-flake = futils.lib.mkApp { drv = self.packages.${system}.diff-flake; };
default = self.apps.${system}.diff-flake;
};
# Work-around for https://github.com/nix-community/home-manager/issues/3075
legacyPackages = {
homeConfigurations = {
@ -68,6 +63,7 @@ flake-parts.lib.mkFlake { inherit inputs; } {
systems = mySystems;
imports = [
./apps.nix
./checks.nix
./dev-shells.nix
./lib.nix