summary refs log tree commit diff
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2020-09-29 12:57:00 +0200
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2020-09-29 12:57:00 +0200
commit255d4dccbcc56cfb68c1811c0f07b3d10ce63cff (patch)
treea32cd1588f6f1debec8f67ab85f736327eeb1b99
parent88ad5323c218c87b1c30521f12e8f09825347696 (diff)
chore(default.nix): remove unnecessary attributes
-rw-r--r--default.nix6
-rw-r--r--nixos/overlay.nix7
2 files changed, 0 insertions, 13 deletions
diff --git a/default.nix b/default.nix
index bee5fb2..f90f981 100644
--- a/default.nix
+++ b/default.nix
@@ -149,11 +149,6 @@ rec {
       dontStrip = true;
     };
 
-  overlay = callPackage ./nixos/overlay.nix {
-    inherit bahnhofshalle;
-    warteraum = warteraum-static;
-  };
-
   pythonShell =
     let
       pythonEnv = python3.withPackages (p: with p; [
@@ -168,5 +163,4 @@ rec {
       buildInputs = [ pythonEnv sqlite ];
     };
 
-  inherit stringSegments;
 }
diff --git a/nixos/overlay.nix b/nixos/overlay.nix
deleted file mode 100644
index f4438a8..0000000
--- a/nixos/overlay.nix
+++ /dev/null
@@ -1,7 +0,0 @@
-{ warteraum, bahnhofshalle }:
-
-self: super:
-
-{
-  inherit warteraum bahnhofshalle;
-}