flake: use 'flake-parts'

This commit is contained in:
Bruno BELANYI 2023-03-08 17:45:49 +00:00
parent 92438d35f6
commit 922c6e75ca

View file

@ -1,4 +1,5 @@
{ self
, flake-parts
, futils
, home-manager
, nixpkgs
@ -77,4 +78,8 @@ let
nixosConfigurations = import ./nixos.nix inputs;
};
in
(eachMySystem systemDependant) // systemIndependant
flake-parts.lib.mkFlake { inherit inputs; } {
systems = mySystems;
flake = (eachMySystem systemDependant) // systemIndependant;
}