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

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

    dust
    pixie
  ];
}