From 51ef4c9fb3aeae17bec005833a2b4b0257713e7c Mon Sep 17 00:00:00 2001 From: Damocles Date: Mon, 13 Apr 2026 09:51:29 +0200 Subject: [PATCH] nova-shell-cli: wrap with config path instead of bare symlink --- flake.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index ec09d26..a86139d 100644 --- a/flake.nix +++ b/flake.nix @@ -56,9 +56,10 @@ in rec { nova-shell = pkgs.callPackage ./nix/package.nix { quickshell = qs; }; - nova-shell-cli = pkgs.runCommand "nova-shell-cli" { } '' + nova-shell-cli = pkgs.runCommand "nova-shell-cli" { nativeBuildInputs = [ pkgs.makeWrapper ]; } '' mkdir -p $out/bin - ln -s ${qs}/bin/quickshell $out/bin/nova-shell + makeWrapper ${qs}/bin/quickshell $out/bin/nova-shell \ + --add-flags "-p ${nova-shell}/share/nova-shell/shell.qml" ''; default = nova-shell; }