From ec1e36ced68e7b707cee3c79da4833d451fada69 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Mon, 15 Jan 2024 14:55:31 +0800 Subject: [PATCH] lib/extras: rename flake helpers file --- flake.nix | 2 +- lib/extras/{images.nix => flake-helpers.nix} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename lib/extras/{images.nix => flake-helpers.nix} (100%) diff --git a/flake.nix b/flake.nix index 52a94d67..2119754c 100644 --- a/flake.nix +++ b/flake.nix @@ -83,7 +83,7 @@ outputs = inputs@{ self, nixpkgs, ... }: let # A set of image-related utilities for the flake outputs. - inherit (import ./lib/extras/images.nix { inherit lib inputs; }) mkHost mkHome mkImage listImagesWithSystems; + inherit (import ./lib/extras/flake-helpers.nix { inherit lib inputs; }) mkHost mkHome mkImage listImagesWithSystems; # We're considering this as the variant since we'll export the custom # library as `lib` in the output attribute. diff --git a/lib/extras/images.nix b/lib/extras/flake-helpers.nix similarity index 100% rename from lib/extras/images.nix rename to lib/extras/flake-helpers.nix