Fix formatting

This commit is contained in:
Joshua Yuen 2026-01-19 16:24:34 -05:00
parent 58f0145f5a
commit 0910e858ba
Signed by: josh
GPG Key ID: 502720BC22ED411C
3 changed files with 21 additions and 18 deletions

View File

@ -45,7 +45,7 @@ in
shell = pkgs.${shellCfg.defaultShell};
ignoreShellProgramCheck = true;
packages = with pkgs; [
];
};

View File

@ -7,4 +7,4 @@
enableBashIntegration = true;
enableZshIntegration = true;
};
}
}

View File

@ -6,21 +6,24 @@
programs.vscode = {
enable = true;
package = pkgs.vscodium;
profiles.default.extensions = with pkgs.vscode-extensions; with pkgs.vscode-marketplace; [
amazonwebservices.aws-toolkit-vscode
arrterian.nix-env-selector
christian-kohler.path-intellisense
eamodio.gitlens
esbenp.prettier-vscode
jnoortheen.nix-ide
leonardssh.vscord
mkhl.direnv
ms-python.debugpy
ms-python.python
opentofu.vscode-opentofu
redhat.ansible
redhat.vscode-yaml
rvest.vs-code-prettier-eslint
];
profiles.default.extensions =
with pkgs.vscode-extensions;
with pkgs.vscode-marketplace;
[
amazonwebservices.aws-toolkit-vscode
arrterian.nix-env-selector
christian-kohler.path-intellisense
eamodio.gitlens
esbenp.prettier-vscode
jnoortheen.nix-ide
leonardssh.vscord
mkhl.direnv
ms-python.debugpy
ms-python.python
opentofu.vscode-opentofu
redhat.ansible
redhat.vscode-yaml
rvest.vs-code-prettier-eslint
];
};
}