summary refs log tree commit diff stats
path: root/user/settings/development/lisp.nix
blob: 7a55c41c92d25025cfdcede4dbe20c21a6b0fc83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  config,
  pkgs,
  ...
}: {
  home.packages = with pkgs; [
    ccl
    sbcl
    lispPackages.quicklisp
    asdf
    cl-launch
  ];
}