fix(cicd): ssh option names, inherit (nixpkgs) lib

This commit is contained in:
reo101 2023-02-12 11:38:17 +02:00
parent 0879b52630
commit 6a0898753d
Signed by: reo101
GPG key ID: 675AA7EF13964ACB
2 changed files with 9 additions and 7 deletions

View file

@ -74,9 +74,10 @@
} @ inputs:
let
inherit (self) outputs;
helpers = (import ./lib/helpers.nix) { lib = nixpkgs.lib; };
inherit (nixpkgs) lib;
helpers = (import ./lib/helpers.nix) { inherit lib; };
inherit (helpers) recurseDir hasFiles hasDirectories;
forEachSystem = nixpkgs.lib.genAttrs [
forEachSystem = lib.genAttrs [
"aarch64-linux"
"i686-linux"
"x86_64-linux"
@ -93,7 +94,6 @@
# Apps (`nix run`)
apps = {};
apps.default = null;
# Dev Shells (`nix develop`)
devShells = forEachPkgs (pkgs: