summaryrefslogtreecommitdiff
path: root/overlays
diff options
context:
space:
mode:
Diffstat (limited to 'overlays')
-rw-r--r--overlays/gup.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/overlays/gup.nix b/overlays/gup.nix
new file mode 100644
index 00000000..9f738442
--- /dev/null
+++ b/overlays/gup.nix
@@ -0,0 +1,8 @@
1{ final, prev, sources, ... }: {
2 gup = prev.gup.overrideAttrs (oldAttrs: rec {
3 PYLINTRC = prev.writeText "pylintrc" ''
4 [MESSAGES CONTROL]
5 disable=E0606
6 '';
7 });
8}