summary refs log tree commit diff
path: root/vm
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2023-03-12 13:31:10 +0000
committerAlyssa Ross <hi@alyssa.is>2023-03-12 14:03:59 +0000
commit449a93fc2c1377bec4f783267ef1e5a30dd3f718 (patch)
tree1560c246f6a9e802e1a9640eb82252a0eeb44b99 /vm
parentfd8657341f211ad656e606963ccc1e41b783faa6 (diff)
downloadspectrum-449a93fc2c1377bec4f783267ef1e5a30dd3f718.tar
spectrum-449a93fc2c1377bec4f783267ef1e5a30dd3f718.tar.gz
spectrum-449a93fc2c1377bec4f783267ef1e5a30dd3f718.tar.bz2
spectrum-449a93fc2c1377bec4f783267ef1e5a30dd3f718.tar.lz
spectrum-449a93fc2c1377bec4f783267ef1e5a30dd3f718.tar.xz
spectrum-449a93fc2c1377bec4f783267ef1e5a30dd3f718.tar.zst
spectrum-449a93fc2c1377bec4f783267ef1e5a30dd3f718.zip
Remove unused hasSuffix inherits
This was widely used when each component was responsible for filtering
out its own Nix files, but now that's centralised, all these bindings
can be cleaned up.

Fixes: 0149885 ("nix: centralise source cleaning")
Signed-off-by: Alyssa Ross <hi@alyssa.is>
Diffstat (limited to 'vm')
-rw-r--r--vm/sys/net/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/sys/net/default.nix b/vm/sys/net/default.nix
index a7f6cc0..852d5d0 100644
--- a/vm/sys/net/default.nix
+++ b/vm/sys/net/default.nix
@@ -12,7 +12,7 @@ config.pkgs.pkgsStatic.callPackage (
 }:
 
 let
-  inherit (lib) concatMapStringsSep hasSuffix;
+  inherit (lib) concatMapStringsSep;
 
   connman = connmanMinimal;