tv pkgs: move ff to simple

This commit is contained in:
tv 2022-03-05 10:07:46 +01:00
parent 9958dc2590
commit 7a11725440
2 changed files with 5 additions and 4 deletions

View File

@ -22,10 +22,6 @@ fix
//
{
ff = self.writeDashBin "ff" ''
exec ${self.firefoxWrapper}/bin/firefox "$@"
'';
gnupg = self.gnupg22;
}

5
tv/5pkgs/simple/ff.nix Normal file
View File

@ -0,0 +1,5 @@
{ pkgs }:
pkgs.writeDashBin "ff" ''
exec ${pkgs.firefoxWrapper}/bin/firefox "$@"
''