Install spacemacs
This commit is contained in:
parent
19b450eca9
commit
01762d4283
5 changed files with 34 additions and 2 deletions
|
|
@ -3,7 +3,7 @@
|
|||
home.username = username;
|
||||
home.homeDirectory = "/home/" + username;
|
||||
|
||||
imports = [ ./shell ./wayland ];
|
||||
imports = [ ./shell ./wayland ./spacemacs.nix ];
|
||||
|
||||
xdg.enable = true;
|
||||
xdg.userDirs.enable = true;
|
||||
|
|
|
|||
10
common/home-manager/spacemacs.nix
Normal file
10
common/home-manager/spacemacs.nix
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{ config, pkgs, spacemacs, ... }:
|
||||
{
|
||||
# Set up spacemacs using local emacs config
|
||||
|
||||
home.file.".emacs.d" = {
|
||||
recursive = true;
|
||||
source = spacemacs;
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue