Compare commits

..

2 Commits

2 changed files with 4 additions and 1 deletions

View File

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