92 lines
2.7 KiB
Nix
92 lines
2.7 KiB
Nix
{ config, pkgs, inputs, ... }:
|
|
let
|
|
codium-wayland = pkgs.buildEnv {
|
|
name = "codium-wayland";
|
|
paths = [
|
|
(pkgs.writeShellScriptBin "codium-wayland" ''
|
|
NIX_OZONE_WL=1 \
|
|
exec \
|
|
${config.home-manager.users.balsoft.programs.vscode.package}/bin/codium \
|
|
--enable-features=UseOzonePlatform \
|
|
--ozone-platform=wayland \
|
|
-w \
|
|
"$@"
|
|
'')
|
|
(pkgs.makeDesktopItem {
|
|
name = "codium-wayland";
|
|
desktopName = "VSCodium (Wayland)";
|
|
exec = "codium-wayland";
|
|
icon = "code";
|
|
categories = [ "Utility" "TextEditor" "Development" "IDE" ];
|
|
mimeTypes = [ "text/plain" "inode/directory" ];
|
|
extraConfig = {
|
|
StartupNotify = "true";
|
|
StartupWMClass = "vscodium";
|
|
};
|
|
})
|
|
];
|
|
};
|
|
in {
|
|
environment.systemPackages = [ codium-wayland ];
|
|
|
|
defaultApplications.editor = {
|
|
cmd = "${codium-wayland}/bin/codium-wayland";
|
|
desktop = "codium-wayland";
|
|
};
|
|
home-manager.users.balsoft = {
|
|
|
|
programs.vscode = {
|
|
enable = true;
|
|
package = pkgs.vscodium;
|
|
|
|
mutableExtensionsDir = false;
|
|
extensions = with pkgs.vscode-extensions; [
|
|
asvetliakov.vscode-neovim
|
|
kahole.magit
|
|
(inputs.direnv-vscode.packages.${pkgs.system}.vsix.overrideAttrs (_: {
|
|
buildPhase = "yarn run build";
|
|
installPhase = ''
|
|
mkdir -p $out/share/vscode/extensions/direnv.direnv-vscode
|
|
cp -R * $out/share/vscode/extensions/direnv.direnv-vscode
|
|
'';
|
|
}))
|
|
|
|
(pkgs.callPackage ./theme.nix { } config.themes.colors)
|
|
|
|
matklad.rust-analyzer
|
|
redhat.vscode-yaml
|
|
jnoortheen.nix-ide
|
|
dhall.dhall-lang
|
|
hashicorp.terraform
|
|
timonwong.shellcheck
|
|
bungcip.better-toml
|
|
haskell.haskell
|
|
justusadam.language-haskell
|
|
ms-python.python
|
|
github.vscode-pull-request-github
|
|
];
|
|
|
|
userSettings = {
|
|
"update.mode" = "none";
|
|
"[nix]"."editor.tabSize" = 2;
|
|
"workbench.colorTheme" = "Balsoft's generated theme";
|
|
"vim.useCtrlKeys" = false;
|
|
"terminal.integrated.profiles.linux".bash.path =
|
|
"/run/current-system/sw/bin/bash";
|
|
"terminal.integrated.defaultProfile.linux" = "bash";
|
|
"editor.fontFamily" = "IBM Plex Mono";
|
|
"nix.formatterPath" = "nixfmt";
|
|
"git.autofetch" = true;
|
|
"vscode-neovim.neovimExecutablePaths.linux" = "${pkgs.neovim}/bin/nvim";
|
|
"vscode-neovim.useCtrlKeysForNormalMode" = false;
|
|
"vscode-neovim.mouseSelectionStartVisualMode" = true;
|
|
};
|
|
keybindings = [{
|
|
key = "ctrl+shift+r";
|
|
command = "workbench.action.tasks.runTask";
|
|
when = "textInputFocus";
|
|
}];
|
|
};
|
|
};
|
|
}
|