dotfiles/nixos/msi/modules/lean.nix

12 lines
147 B
Nix
Raw Permalink Normal View History

2024-07-22 23:55:51 +02:00
{ pkgs, config, ... }:
{
2024-07-27 14:03:17 +02:00
home.sessionVariables = {
ELAN_HOME = "${config.xdg.cacheHome}/elan";
};
2024-07-22 23:55:51 +02:00
home.packages = with pkgs; [
elan
];
}