all repos — nixfiles @ 0741f0290ee5e7082ff421921583ff9ad8ec6f1e

System and user configuration, managed by nix and home-manager

reformat all nix code

Alan Pearce
commit

0741f0290ee5e7082ff421921583ff9ad8ec6f1e

parent

83d9e0536997ccea2dde49e63d0f0f458f56ee61

1 file changed, 34 insertions(+), 19 deletions(-)

changed files
M user/settings/development/base.nixuser/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 = {