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;
}

View file

@ -1,5 +1,6 @@
{
description = "System conf";
inputs = rec {
nixpkgs.url = "nixpkgs/nixos-unstable";
@ -12,7 +13,10 @@ inputs = rec {
spacemacs.url = "github:syl20bnr/spacemacs/develop";
spacemacs.flake = false;
spacemacs-config.url = "github:kiana-S/spacemacs-config";
spacemacs-config.flake = false;
};
outputs = { self,
nixpkgs,
home-manager,