Files
FastSync/shell.nix
T
2026-06-14 16:52:07 +00:00

21 lines
221 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
gcc
cmake
gnumake
pkg-config
];
buildInputs = with pkgs; [
zstd
];
shellHook = ''
./tmux.sh
'';
}