diff options
Diffstat (limited to 'users/wpcarro/emacs/.emacs.d')
-rw-r--r-- | users/wpcarro/emacs/.emacs.d/snippets/nix-mode/shell-nix | 9 | ||||
-rw-r--r-- | users/wpcarro/emacs/.emacs.d/wpc/wpc-misc.el | 4 |
2 files changed, 4 insertions, 9 deletions
diff --git a/users/wpcarro/emacs/.emacs.d/snippets/nix-mode/shell-nix b/users/wpcarro/emacs/.emacs.d/snippets/nix-mode/shell-nix index 45cb24e2b9e3..b5eb5a244721 100644 --- a/users/wpcarro/emacs/.emacs.d/snippets/nix-mode/shell-nix +++ b/users/wpcarro/emacs/.emacs.d/snippets/nix-mode/shell-nix @@ -2,12 +2,11 @@ # name: shell.nix boilerplate # key: import # -- -let - briefcase = with import <briefcase> {}; - pkgs = briefcase.third_party.pkgs; -in stdenv.mkDerivation { +{ pkgs, ... }: + +pkgs.stdenv.mkDerivation { name = "$1"; buildInputs = [ $2 ]; -} \ No newline at end of file +} diff --git a/users/wpcarro/emacs/.emacs.d/wpc/wpc-misc.el b/users/wpcarro/emacs/.emacs.d/wpc/wpc-misc.el index 574162fbfd82..5b147dc77d8f 100644 --- a/users/wpcarro/emacs/.emacs.d/wpc/wpc-misc.el +++ b/users/wpcarro/emacs/.emacs.d/wpc/wpc-misc.el @@ -294,10 +294,6 @@ :config (add-hook 'lsp-mode-hook #'lsp-ui-mode)) -(use-package company-lsp - :config - (push 'company-lsp company-backends)) - ;; Wilfred/suggest.el - Tool for discovering functions basesd on declaring your ;; desired inputs and outputs. (use-package suggest) |