Create separate git repo for spacemacs config

This commit is contained in:
Kiana Sheibani 2022-04-14 11:28:32 -04:00
parent 74721656ae
commit 02f769baad
2 changed files with 9 additions and 1 deletions

View file

@ -1,4 +1,4 @@
{ config, pkgs, spacemacs, ... }:
{ config, pkgs, spacemacs, spacemacs-config, ... }:
{
# Set up spacemacs using local emacs config
@ -6,5 +6,9 @@
recursive = true;
source = spacemacs;
};
# Spacemacs config
home.file.".spacemacs.d".source = spacemacs-config;
}