asia-golf/shell.nix

12 lines
199 B
Nix

{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/23.11.tar.gz") {} }:
pkgs.mkShell {
shellHook = ''
alias cls=clear
'';
buildInputs = with pkgs; [
bun
];
}