don't inherit from clan-core

clan-core now has packages that we don't need
This commit is contained in:
Jörg Thalheim 2024-07-09 13:47:37 +02:00
parent eca556a5e4
commit c93f912ad7

View File

@ -1,6 +1,11 @@
{
perSystem =
{ inputs', pkgs, ... }:
{
config,
inputs',
pkgs,
...
}:
let
convert2Tofu =
provider:
@ -16,8 +21,15 @@
pkgs.bashInteractive
pkgs.sops
pkgs.nixVersions.latest
inputs'.clan-core.packages.tea-create-pr
inputs'.clan-core.packages.merge-after-ci
inputs'.clan-core.packages.clan-cli
# treefmt with config defined in ./flake.nix
config.treefmt.build.wrapper
(pkgs.opentofu.withPlugins (
p:
builtins.map convert2Tofu [
@ -29,7 +41,6 @@
]
))
];
inputsFrom = [ inputs'.clan-core.devShells.default ];
};
};
}