nix-config/flake/default.nix
Bruno BELANYI 723bc90852
Some checks are pending
ci/woodpecker/push/check Pipeline is pending
WIP: flake: add deploy-rs
2023-06-11 16:12:55 +01:00

24 lines
364 B
Nix

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