17 lines
488 B
Nix
17 lines
488 B
Nix
{ config, pkgs, lib, flakeSelf, ... }:
|
|
let inputs = flakeSelf.inputs; in
|
|
{
|
|
home-manager.users.toast.programs.vscode = {
|
|
# The redhat xml extension needs an fhs environment
|
|
package = lib.mkForce pkgs.vscodium-fhs;
|
|
extensions = with inputs.vscode-extensions.extensions.x86_64-linux; [
|
|
open-vsx.redhat.vscode-xml
|
|
open-vsx.tomoki1207.pdf
|
|
open-vsx.ms-vscode.live-server
|
|
open-vsx.ecmel.vscode-html-css
|
|
];
|
|
userSettings = {
|
|
redhat.telemetry.enabled = false;
|
|
};
|
|
};
|
|
}
|