rice/programs/sbcl.nix

14 lines
258 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 = ''
2023-03-06 12:28:14 +00:00
(:tree "/home/buffet/proj/bechamel")
2023-03-06 12:24:11 +00:00
'';
};
};
}