Create separate git repo for spacemacs config
This commit is contained in:
parent
74721656ae
commit
02f769baad
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue