nix-config/flake/default.nix
Bruno BELANYI 019424129f
All checks were successful
ci/woodpecker/push/check Pipeline was successful
flake: use explicit 'systems' input
2024-03-07 11:36:18 +00:00

22 lines
334 B
Nix

{ flake-parts
, systems
, ...
} @ inputs:
let
mySystems = import systems;
in
flake-parts.lib.mkFlake { inherit inputs; } {
systems = mySystems;
imports = [
./apps.nix
./checks.nix
./dev-shells.nix
./home-manager.nix
./lib.nix
./nixos.nix
./overlays.nix
./packages.nix
./templates.nix
];
}