rice/programs/sbcl.nix
2024-05-20 12:06:15 +02:00

13 lines
249 B
Nix

{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")
'';
};
};
}