From 0910e858ba00c5006dc79cbde9f341ff04627fc8 Mon Sep 17 00:00:00 2001 From: Joshua Yuen Date: Mon, 19 Jan 2026 16:24:34 -0500 Subject: [PATCH] Fix formatting --- modules/core/user.nix | 2 +- modules/home/direnv.nix | 2 +- modules/home/vscodium.nix | 35 +++++++++++++++++++---------------- 3 files changed, 21 insertions(+), 18 deletions(-) diff --git a/modules/core/user.nix b/modules/core/user.nix index 057fa5e..14b04ff 100644 --- a/modules/core/user.nix +++ b/modules/core/user.nix @@ -45,7 +45,7 @@ in shell = pkgs.${shellCfg.defaultShell}; ignoreShellProgramCheck = true; packages = with pkgs; [ - + ]; }; diff --git a/modules/home/direnv.nix b/modules/home/direnv.nix index 204d465..b963efa 100644 --- a/modules/home/direnv.nix +++ b/modules/home/direnv.nix @@ -7,4 +7,4 @@ enableBashIntegration = true; enableZshIntegration = true; }; -} \ No newline at end of file +} diff --git a/modules/home/vscodium.nix b/modules/home/vscodium.nix index cd5957a..c426473 100644 --- a/modules/home/vscodium.nix +++ b/modules/home/vscodium.nix @@ -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 + ]; }; }