nixfleet/hmModules/vscode/default.nix
Andrea Ciceri a394b9cefd
All checks were successful
/ test (push) Successful in 32s
Reformat everything
2024-09-20 11:37:17 +02:00

9 lines
282 B
Nix

{ pkgs, ... }:
{
programs.vscode = {
enable = true;
# For a few reasons sometimes I'm forced to use VSCode and I don't have time to nixifiy even its configuration.
# This is why I'm using the FHS version. Purity gods, forgive me!
package = pkgs.vscode-fhs;
};
}