chore: Remove unused bindings

This commit is contained in:
Robert Hensing 2024-07-08 13:42:36 +02:00
parent e5f2a9feed
commit 4ba33ec946
3 changed files with 1 additions and 9 deletions

View File

@ -18,7 +18,6 @@ let
devshell = import devshellSrc { inherit system; };
withCategory = category: attrset: attrset // { inherit category; };
util = withCategory "utils";
rootDir = "$PRJ_ROOT";

View File

@ -28,22 +28,15 @@ let
reverseList
;
inherit (builtins)
pathExists
attrNames
attrValues
concatMap
concatStringsSep
elemAt
filter
foldl'
genList
head
isString
length
listToAttrs
mapAttrs
removeAttrs
split
tail
;

View File

@ -1,7 +1,7 @@
{ lib, config, inputs, ... }:
let
inherit (lib) mkIf filterAttrs mapAttrsToList mapAttrs' mkOption types;
inherit (lib) mkIf filterAttrs mapAttrs' mkOption types;
mkFalseOption = description: mkOption {
inherit description;
default = false;