reformat all nix code
1 file changed, 34 insertions(+), 19 deletions(-)
changed files
M user/settings/development/base.nix → user/settings/development/base.nix
@@ -1,10 +1,12 @@ -{ config -, pkgs -, ... +{ + config, + pkgs, + ... }: { imports = [ ../../modules/tabnine.nix ]; - home.packages = with pkgs; + home.packages = + with pkgs; [ shellcheck shfmt@@ -33,7 +35,8 @@ skopeo docker-credential-helpers dive - ] ++ (lib.optionals stdenv.isDarwin [ + ] + ++ (lib.optionals stdenv.isDarwin [ lima colima docker-client@@ -44,16 +47,20 @@ FLY_NO_UPDATE_CHECK = "1"; LIMA_INSTANCE = "nixos"; }; - programs.emacs.extraPackages = epkgs: (with epkgs; [ - (treesit-grammars.with-grammars (grammars: with grammars; [ - tree-sitter-bash - tree-sitter-fish - tree-sitter-just - tree-sitter-make - tree-sitter-dockerfile - tree-sitter-sql - ])) - ]); + programs.emacs.extraPackages = + epkgs: + (with epkgs; [ + (treesit-grammars.with-grammars ( + grammars: with grammars; [ + tree-sitter-bash + tree-sitter-fish + tree-sitter-just + tree-sitter-make + tree-sitter-dockerfile + tree-sitter-sql + ] + )) + ]); programs.nixvim.plugins = { lsp.servers = {@@ -95,10 +102,18 @@ }; }; programs.fish.shellAbbrs = { - b = { function = "projectdo_build"; }; - r = { function = "projectdo_run"; }; - t = { function = "projectdo_test"; }; - p = { function = "projectdo_tool"; }; + b = { + function = "projectdo_build"; + }; + r = { + function = "projectdo_run"; + }; + t = { + function = "projectdo_test"; + }; + p = { + function = "projectdo_tool"; + }; ciq = "laminarc queue $(basename $PWD) ref=refs/heads/$(git branch --show-current) rev=$(git rev-parse @)"; }; home.shellAliases = {