flake: apps: convert to 'flake-parts'
This commit is contained in:
parent
ec036255ad
commit
59b1ab59dd
9
flake/apps.nix
Normal file
9
flake/apps.nix
Normal 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;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -21,11 +21,6 @@ let
|
||||||
eachMySystem = eachSystem mySystems;
|
eachMySystem = eachSystem mySystems;
|
||||||
|
|
||||||
systemDependant = system: {
|
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
|
# Work-around for https://github.com/nix-community/home-manager/issues/3075
|
||||||
legacyPackages = {
|
legacyPackages = {
|
||||||
homeConfigurations = {
|
homeConfigurations = {
|
||||||
|
@ -68,6 +63,7 @@ flake-parts.lib.mkFlake { inherit inputs; } {
|
||||||
systems = mySystems;
|
systems = mySystems;
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
|
./apps.nix
|
||||||
./checks.nix
|
./checks.nix
|
||||||
./dev-shells.nix
|
./dev-shells.nix
|
||||||
./lib.nix
|
./lib.nix
|
||||||
|
|
Loading…
Reference in a new issue