Files
nixos-configv3/modules/development/default.nix
2026-06-21 21:34:53 -04:00

28 lines
610 B
Nix
Executable File

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
antigravity # Free Gemini 3 credits was too good of an offer to not take up, even if it requires selling my soul.
chromium
# vscode
];
home-manager.sharedModules = [
(
{ pkgs, ... }:
{
programs.vscode = {
enable = true;
extensions = with pkgs.vscode-extensions; [
jnoortheen.nix-ide
continue.continue
];
userSettings = {
"editor.formatOnSave" = true;
"git.autofetch" = true;
};
};
}
)
];
}