rice/programs/sbcl.nix

14 lines
249 B
Nix
Raw Normal View History

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