summary refs log tree commit diff stats
path: root/system/modules/development/lisp.nix
blob: dc521feb86b124491668bae669f6856b173b66df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, pkgs, ... }:

{ environment.systemPackages = with pkgs; [
    ccl
    sbcl
    lispPackages.quicklisp
    asdf
    cl-launch

    dust
    pixie
  ];
}