aboutsummaryrefslogtreecommitdiffhomepage
path: root/package.nix
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-02-28 14:39:47 +0900
committerOphestra <cat@gensokyo.uk>2025-02-28 14:43:46 +0900
commit2d4cabe7860cb7ef7aa5bb6a3c21153e624d61b6 (patch)
treecd93b9d2a423bd8112a88327f7b3564fed214547 /package.nix
parent80f9b62d254d4ad8ea05784a509a81d9851f30aa (diff)
nix: increase nixfmt max width
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'package.nix')
-rw-r--r--package.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/package.nix b/package.nix
index 056a9c53..3088ec3e 100644
--- a/package.nix
+++ b/package.nix
@@ -30,10 +30,7 @@ buildGoModule rec {
src = builtins.path {
name = "${pname}-src";
path = lib.cleanSource ./.;
- filter =
- path: type:
- !(type == "regular" && (lib.hasSuffix ".nix" path || lib.hasSuffix ".py" path))
- && !(type == "directory" && lib.hasSuffix "/cmd/fsu" path);
+ filter = path: type: !(type == "regular" && (lib.hasSuffix ".nix" path || lib.hasSuffix ".py" path)) && !(type == "directory" && lib.hasSuffix "/cmd/fsu" path);
};
vendorHash = null;