nixos-config/common/home-manager/spacemacs.nix

15 lines
259 B
Nix
Raw Normal View History

{ config, pkgs, spacemacs, spacemacs-config, ... }:
2022-04-10 16:15:13 -04:00
{
# Set up spacemacs using local emacs config
home.file.".emacs.d" = {
recursive = true;
source = spacemacs;
};
# Spacemacs config
home.file.".spacemacs.d".source = spacemacs-config;
2022-04-10 16:15:13 -04:00
}