25 lines
531 B
Nix
Executable File
25 lines
531 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
|
|
];
|
|
|
|
home-manager.sharedModules = [
|
|
(
|
|
{ pkgs, ... }:
|
|
{
|
|
programs.vscode = {
|
|
enable = true;
|
|
extensions = with pkgs.vscode-extensions; [
|
|
jnoortheen.nix-ide
|
|
];
|
|
userSettings = {
|
|
"editor.formatOnSave" = true;
|
|
};
|
|
};
|
|
}
|
|
)
|
|
];
|
|
}
|