tea-create-pr: don't use clan-core formatter

This commit is contained in:
DavHau
2025-01-17 19:20:28 +07:00
parent dfdf98f664
commit 3feaba2267
2 changed files with 1 additions and 6 deletions

View File

@@ -23,7 +23,7 @@
{ config, pkgs, ... }:
{
packages = {
tea-create-pr = pkgs.callPackage ./tea-create-pr { formatter = config.treefmt.build.wrapper; };
tea-create-pr = pkgs.callPackage ./tea-create-pr { };
zerotier-members = pkgs.callPackage ./zerotier-members { };
zt-tcp-relay = pkgs.callPackage ./zt-tcp-relay { };
moonlight-sunshine-accept = pkgs.callPackage ./moonlight-sunshine-accept { };

View File

@@ -5,8 +5,6 @@
git,
tea,
openssh,
# our formatter
formatter,
}:
writeShellApplication {
name = "tea-create-pr";
@@ -16,9 +14,6 @@ writeShellApplication {
git
tea
openssh
# our treefmt formatter wrapped with correct config
formatter
];
text = builtins.readFile ./script.sh;
}