nixGL and firefox

This commit is contained in:
2023-12-14 10:10:00 +02:00
committed by Motiejus Jakštys
parent 5204da7657
commit c13c45736b
3 changed files with 44 additions and 0 deletions

View File

@@ -21,12 +21,22 @@
zigpkgs."0.11.0"
])
(lib.mkIf hmOnly [
pkgs.nixgl.nixGLIntel
ncdu
tokei
scrcpy
yt-dlp
vimv-rs
bandwhich
hyperfine
(runCommand "ff" {} ''
mkdir -p $out/bin
{
echo '#!/bin/sh'
echo 'exec ${pkgs.nixgl.nixGLIntel}/bin/nixGLIntel ${firefox}/bin/firefox "$@"'
} > $out/bin/ff
chmod a+x $out/bin/ff
'')
])
];