Rename firefox-tabs to f-around-firefox (faf) and add to PATH

This commit is contained in:
DannyDannyDanny 2026-01-30 18:26:15 +01:00
parent 91d35d1324
commit 9aedc697d9
6 changed files with 41 additions and 35 deletions

View file

@ -0,0 +1,30 @@
{
description = "f-around-firefox (faf) script environment";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
};
outputs = { self, nixpkgs }:
let
system = "aarch64-darwin";
pkgs = import nixpkgs { inherit system; };
pythonEnv = pkgs.python3.withPackages (ps: with ps; [
lz4
]);
in
{
devShells.${system}.default = pkgs.mkShell {
buildInputs = [
pythonEnv
pkgs.lz4
];
shellHook = ''
echo "faf script environment ready"
echo "Python: $(which python3)"
echo "Run: faf"
'';
};
};
}