Browse Source

Enable docker + add grpc gateway

main
parent
commit
05ff53939d
Signed by: chris GPG Key ID: 3025DCBD46F81C0F
  1. 9
      README.org
  2. 1
      flake.nix
  3. 2
      shells/grpc.nix

9
README.org

@ -442,10 +442,12 @@ Import this shell with ~nix develop $DOTFILES#grpc~
with pkgs; with pkgs;
mkShell { mkShell {
buildInputs = [ buildInputs = [
buf
grpc grpc
grpcui grpcui
grpcurl grpcurl
grpc-tools grpc-tools
grpc-gateway
]; ];
shellHook = '' shellHook = ''
''; '';
@ -590,6 +592,7 @@ nixos = nixpkgs.lib.nixosSystem {
<<module-ssh>> <<module-ssh>>
<<module-hugo>> <<module-hugo>>
<<module-godot>> <<module-godot>>
<<module-docker>>
<<module-flakes>> <<module-flakes>>
<<module-cachix>> <<module-cachix>>
<<module-firefox>> <<module-firefox>>
@ -2461,7 +2464,8 @@ The [[https://microsoft.github.io/language-server-protocol][Language Server Prot
;; Add custom keybindings for `lsp'. ;; Add custom keybindings for `lsp'.
(dotfiles/leader (dotfiles/leader
"l" '(:ignore t :which-key "LSP") "l" '(:ignore t :which-key "LSP")
"ll" '(lsp :which-key "LSP"))
"ll" '(lsp :which-key "LSP")
"lr" '(lsp-rename :which-key "Rename"))
#+END_SRC #+END_SRC
*** CCLS *** CCLS
@ -2757,8 +2761,9 @@ epkgs.doom-themes
doom-themes-enable-italic t) doom-themes-enable-italic t)
;; Load the `doom-nord' and `doom-nord-light' themes. ;; 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-light t)
(load-theme 'doom-nord t)
;; (load-theme 'doom-nord t)
;; Define a method for returning information about the current theme. ;; Define a method for returning information about the current theme.
;; This is based off the function `org-roam-ui-get-theme'. ;; This is based off the function `org-roam-ui-get-theme'.

1
flake.nix

@ -23,6 +23,7 @@
./modules/ssh.nix ./modules/ssh.nix
./modules/hugo.nix ./modules/hugo.nix
./modules/godot.nix ./modules/godot.nix
./modules/docker.nix
./modules/flakes.nix ./modules/flakes.nix
./modules/cachix.nix ./modules/cachix.nix
./modules/firefox.nix ./modules/firefox.nix

2
shells/grpc.nix

@ -4,10 +4,12 @@
with pkgs; with pkgs;
mkShell { mkShell {
buildInputs = [ buildInputs = [
buf
grpc grpc
grpcui grpcui
grpcurl grpcurl
grpc-tools grpc-tools
grpc-gateway
]; ];
shellHook = '' shellHook = ''
''; '';

Loading…
Cancel
Save