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;
mkShell {
buildInputs = [
buf
grpc
grpcui
grpcurl
grpc-tools
grpc-gateway
];
shellHook = ''
'';
@ -590,6 +592,7 @@ nixos = nixpkgs.lib.nixosSystem {
<<module-ssh>>
<<module-hugo>>
<<module-godot>>
<<module-docker>>
<<module-flakes>>
<<module-cachix>>
<<module-firefox>>
@ -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'.

1
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

2
shells/grpc.nix

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

Loading…
Cancel
Save