diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 13a439d..9ebda4b 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -3,6 +3,7 @@ "bbenoist.nix", "b4dm4n.nixpkgs-fmt", "jnoortheen.nix-ide", - "arrterian.nix-env-selector" + "arrterian.nix-env-selector", + "mattn.lisp" ] } \ No newline at end of file diff --git a/flake.lock b/flake.lock index bd448dc..31519fd 100644 --- a/flake.lock +++ b/flake.lock @@ -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": { diff --git a/home.nix b/home.nix index e9a3ef8..b8e6a29 100644 --- a/home.nix +++ b/home.nix @@ -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; diff --git a/shell.nix b/shell.nix index 450c93d..5936b21 100644 --- a/shell.nix +++ b/shell.nix @@ -2,5 +2,7 @@ pkgs.mkShell { buildInputs = [ pkgs.nixpkgs-fmt + # To enable webhint to analyze source files + pkgs.nodejs ]; }