doom emacs

This commit is contained in:
Sridhar Ratnakumar 2021-11-06 09:19:48 -04:00
parent afcb513a60
commit 68d00b3605
4 changed files with 12 additions and 10 deletions

View file

@ -3,6 +3,7 @@
"bbenoist.nix",
"b4dm4n.nixpkgs-fmt",
"jnoortheen.nix-ide",
"arrterian.nix-env-selector"
"arrterian.nix-env-selector",
"mattn.lisp"
]
}

6
flake.lock generated
View file

@ -73,11 +73,11 @@
},
"emacs-overlay": {
"locked": {
"lastModified": 1630603742,
"narHash": "sha256-fYX5y18aHZTnYdBizeeW43NOFvCoT3iXk52dLtS43Gs=",
"lastModified": 1636190016,
"narHash": "sha256-nx5Jbn4PJHfVatu9ZdV+Q+SB7UVtbc/QZacjRQezX44=",
"owner": "nix-community",
"repo": "emacs-overlay",
"rev": "9c69c4d0ef9d8ed0c5a54697e359d7f3a51fcbb1",
"rev": "93fac0add2abcf230b03498b7fa07e10a06a10f2",
"type": "github"
},
"original": {

View file

@ -8,8 +8,7 @@ in
rec {
#imports = pkgs.lib.optional (!bare)
# inputs.nix-doom-emacs.hmModule;
imports = [ inputs.nix-doom-emacs.hmModule ];
home.packages = with pkgs; [
gnumake
@ -43,10 +42,10 @@ rec {
tmux = import ./home/tmux.nix;
#doom-emacs = {
# enable = false;
# doomPrivateDir = ./config/doom.d;
#};
doom-emacs = {
enable = true;
doomPrivateDir = ./config/doom.d;
};
neovim = {
enable = true;

View file

@ -2,5 +2,7 @@
pkgs.mkShell {
buildInputs = [
pkgs.nixpkgs-fmt
# To enable webhint to analyze source files
pkgs.nodejs
];
}