From 05ff53939d4c815aa7968aecc0d3b9253755a049 Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Sun, 30 Jul 2023 10:30:25 -0400 Subject: [PATCH] Enable docker + add grpc gateway --- README.org | 9 +++++++-- flake.nix | 1 + shells/grpc.nix | 2 ++ 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/README.org b/README.org index fde91ac..fee1314 100644 --- a/README.org +++ b/README.org @@ -442,10 +442,12 @@ Import this shell with ~nix develop $DOTFILES#grpc~ with pkgs; mkShell { buildInputs = [ + buf grpc grpcui grpcurl grpc-tools + grpc-gateway ]; shellHook = '' ''; @@ -590,6 +592,7 @@ nixos = nixpkgs.lib.nixosSystem { <> <> <> + <> <> <> <> @@ -2461,7 +2464,8 @@ The [[https://microsoft.github.io/language-server-protocol][Language Server Prot ;; Add custom keybindings for `lsp'. (dotfiles/leader "l" '(:ignore t :which-key "LSP") - "ll" '(lsp :which-key "LSP")) + "ll" '(lsp :which-key "LSP") + "lr" '(lsp-rename :which-key "Rename")) #+END_SRC *** CCLS @@ -2757,8 +2761,9 @@ epkgs.doom-themes doom-themes-enable-italic t) ;; Load the `doom-nord' and `doom-nord-light' themes. +(load-theme 'doom-nord-aurora t) ;; (load-theme 'doom-nord-light t) -(load-theme 'doom-nord t) +;; (load-theme 'doom-nord t) ;; Define a method for returning information about the current theme. ;; This is based off the function `org-roam-ui-get-theme'. diff --git a/flake.nix b/flake.nix index 9a05363..4032fb1 100644 --- a/flake.nix +++ b/flake.nix @@ -23,6 +23,7 @@ ./modules/ssh.nix ./modules/hugo.nix ./modules/godot.nix + ./modules/docker.nix ./modules/flakes.nix ./modules/cachix.nix ./modules/firefox.nix diff --git a/shells/grpc.nix b/shells/grpc.nix index 1a43913..6cd6fcc 100644 --- a/shells/grpc.nix +++ b/shells/grpc.nix @@ -4,10 +4,12 @@ with pkgs; mkShell { buildInputs = [ + buf grpc grpcui grpcurl grpc-tools + grpc-gateway ]; shellHook = '' '';