Compare commits

..

No commits in common. "80e0447bcb79adad4f459ada5610f3eae987b4e3" and "012cdb4658e336ca83c5e4ef7a777b3284c8f156" have entirely different histories.

2 changed files with 1 additions and 4 deletions

View File

@ -22,7 +22,6 @@ rustPlatform.buildRustPackage rec {
]) ])
(type == "regular" && lib.elem baseName [ (type == "regular" && lib.elem baseName [
"flake.nix" "flake.nix"
"flake.lock"
"default.nix" "default.nix"
"module.nix" "module.nix"
".envrc" ".envrc"

View File

@ -38,9 +38,7 @@
package = self.packages.${system}.greg-ng-wrapped; package = self.packages.${system}.greg-ng-wrapped;
in { in {
type = "app"; type = "app";
program = toString (pkgs.writeShellScript "greg-ng" '' program = lib.getExe package;
${lib.getExe package} --mpv-socket-path /tmp/greg-ng-mpv.sock -vvvv
'');
}; };
}); });