dotfiles/.config/nixshell/lisp.nix
2023-12-26 23:38:41 +01:00

9 lines
109 B
Nix

let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
buildInputs = with pkgs; [
sbcl
];
}