mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 14:23:55 -05:00
Aly Raffauf
56427dd1aa
Some checks are pending
flakehub / flakehub-publish (push) Waiting to run
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
* cinnamon: drop modules * home/theme: remove cinnamon theming * cinnamon: remove module references
85 lines
2.5 KiB
Nix
85 lines
2.5 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.ar.home.apps.vsCodium.enable {
|
|
programs.vscode = {
|
|
enable = true;
|
|
package = pkgs.vscodium;
|
|
enableUpdateCheck = false;
|
|
enableExtensionUpdateCheck = false;
|
|
|
|
userSettings = {
|
|
"diffEditor.ignoreTrimWhitespace" = false;
|
|
"editor.fontFamily" = "'NotoSansM Nerd Font', 'monospace', monospace";
|
|
"editor.fontSize" = lib.mkDefault 14;
|
|
"editor.formatOnPaste" = true;
|
|
"editor.formatOnSave" = true;
|
|
"editor.formatOnType" = true;
|
|
"editor.rulers" = [80];
|
|
"explorer.confirmDelete" = false;
|
|
"files.autoSave" = "afterDelay";
|
|
"git.autofetch" = true;
|
|
"git.confirmSync" = false;
|
|
|
|
"nix" = {
|
|
"enableLanguageServer" = true;
|
|
"formatterPath" = lib.getExe pkgs.alejandra;
|
|
"serverPath" = lib.getExe pkgs.nil;
|
|
|
|
"serverSettings"."nil" = {
|
|
"diagnostics" = {
|
|
"ignored" = ["unused_binding" "unused_with"];
|
|
};
|
|
|
|
"formatting" = {
|
|
"command" = ["${lib.getExe pkgs.alejandra}"];
|
|
};
|
|
};
|
|
};
|
|
|
|
"[shellscript]" = {
|
|
"editor.defaultFormatter" = "foxundermoon.shell-format";
|
|
};
|
|
|
|
"shellformat.flag" = "-i 4";
|
|
|
|
"terminal.external.linuxExec" = lib.getExe config.ar.home.defaultApps.terminal;
|
|
"terminal.integrated.fontSize" = lib.mkDefault 14;
|
|
"update.mode" = "none";
|
|
"window.menuBarVisibility" = "hidden";
|
|
"window.titleBarStyle" =
|
|
if config.ar.home.desktop.gnome.enable
|
|
then "custom"
|
|
else "native";
|
|
"window.zoomPerWindow" = false;
|
|
"workbench.colorTheme" =
|
|
if config.ar.home.theme.darkMode
|
|
then "Adwaita Dark"
|
|
else "Adwaita Light";
|
|
"workbench.iconTheme" = "vs-seti";
|
|
"workbench.preferredDarkColorTheme" = "Adwaita Dark";
|
|
"workbench.preferredLightColorTheme" = "Adwaita Light";
|
|
};
|
|
|
|
extensions = with pkgs.vscode-extensions; [
|
|
coolbear.systemd-unit-file
|
|
foxundermoon.shell-format
|
|
github.vscode-github-actions
|
|
github.vscode-pull-request-github
|
|
jnoortheen.nix-ide
|
|
justusadam.language-haskell
|
|
ms-python.python
|
|
ms-vscode.cpptools-extension-pack
|
|
oderwat.indent-rainbow
|
|
piousdeer.adwaita-theme
|
|
rubymaniac.vscode-paste-and-indent
|
|
rust-lang.rust-analyzer
|
|
tomoki1207.pdf
|
|
];
|
|
};
|
|
};
|
|
}
|