From 4ab23dde5051ce98e7384e49d602bd699267a508 Mon Sep 17 00:00:00 2001 From: ChaotiCryptidz Date: Tue, 22 Feb 2022 14:11:36 +0000 Subject: [PATCH] change where hmModule is --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 810ccef..32ad726 100644 --- a/flake.nix +++ b/flake.nix @@ -12,6 +12,8 @@ outputs = { self, nixpkgs, utils, ... }: { + hmModule = import ./hm-module.nix; + overlay = final: prev: let system = final.system; in { @@ -51,8 +53,6 @@ devShell = pkgs.mkShell { buildInputs = with pkgs; [ go ffmpeg ]; }; - hmModule = import ./hm-module.nix; - lib = pkgs.musicutil.lib; }); }