From 83e740d676c84090a78752452d9359fb2a1c7fc3 Mon Sep 17 00:00:00 2001 From: Sense T Date: Fri, 28 Feb 2025 20:50:09 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9D=A2=E5=A4=9A=E4=BA=86=E5=8A=A0=E6=B0=B4?= =?UTF-8?q?=EF=BC=8C=E6=B0=B4=E5=A4=9A=E4=BA=86=E5=92=8C=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- flake.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 6c32836..807a95d 100644 --- a/flake.nix +++ b/flake.nix @@ -36,7 +36,7 @@ ]; inherit (pkgs) mkShell; in - { + rec { formatter.${system} = treefmtEval.config.build.wrapper; devShell."${system}" = mkShell { nativeBuildInputs = with pkgs; [ @@ -51,12 +51,14 @@ }; nixosModules = rec { - default = chuang-packages; chuang-packages = { + pkgs-chuang = packages; imports = [ ./h3c-inode-client/module.nix ]; }; + + default = chuang-packages; }; }; }