rice/programs/sbcl.nix

15 lines
278 B
Nix
Raw Normal View History

2023-03-06 12:24:11 +00:00
{pkgs, ...}: {
home-manager.users.buffet = {
home = {
packages = with pkgs; [
roswell
2023-03-06 12:24:11 +00:00
sbcl
];
file.".config/common-lisp/source-registry.conf.d/lisp.conf".text = ''
(:include (:home "proj" "cl-proj.lisp"))
2023-03-06 12:24:11 +00:00
'';
};
};
}