Merge pull request 'more simplications' (#75) from Mic92-flake-parts-refactoring into main
All checks were successful
build / test (push) Successful in 7s

This commit is contained in:
clan-bot 2023-08-08 12:08:05 +00:00
commit 2efb141b9c
2 changed files with 4 additions and 4 deletions

View File

@ -32,7 +32,7 @@
};
outputs = inputs@{ flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } ({ ... }: {
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [
"x86_64-linux"
"aarch64-linux"
@ -44,7 +44,7 @@
./modules/flake-module.nix
./pkgs/flake-module.nix
];
perSystem = { ... }: {
perSystem = {
treefmt = {
projectRootFile = "flake.nix";
programs.terraform.enable = true;
@ -57,5 +57,5 @@
];
};
};
});
};
}

View File

@ -1,4 +1,4 @@
{ ... }: {
{
imports = [
./clan-merge/flake-module.nix
];