From ec43f67e58f049a709fa2c19601b8c637f38126f Mon Sep 17 00:00:00 2001 From: h7x4 Date: Tue, 27 Jan 2026 19:42:21 +0900 Subject: [PATCH] flake.nix: fix `nix run` --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 1817549..95621e9 100644 --- a/flake.nix +++ b/flake.nix @@ -29,11 +29,11 @@ in forAllSystems (system: pkgs: { default = self.apps.${system}.dibbler; dibbler = let - app = lib.writeShellApplication { + app = pkgs.writeShellApplication { name = "dibbler-with-default-config"; runtimeInputs = [ self.packages.${system}.dibbler ]; text = '' - dibbler -c ${./example-config.toml} + dibbler -c ${./example-config.toml} "$@" ''; }; in mkApp (lib.getExe app) "Run the dibbler cli with its default config against an SQLite database";