nix-config/flake/default.nix
Bruno BELANYI 81f930168a
All checks were successful
ci/woodpecker/push/check Pipeline was successful
flake: use 'defaultSystems'
Instead of writing a list which amounts to the same thing.
2023-04-12 16:50:51 +00:00

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