Bruno BELANYI
81f930168a
All checks were successful
ci/woodpecker/push/check Pipeline was successful
Instead of writing a list which amounts to the same thing.
26 lines
374 B
Nix
26 lines
374 B
Nix
{ self
|
|
, flake-parts
|
|
, futils
|
|
, ...
|
|
} @ inputs:
|
|
let
|
|
inherit (self) lib;
|
|
|
|
mySystems = futils.lib.defaultSystems;
|
|
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
|
|
];
|
|
}
|