mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 11:43:55 -05:00
vscodium: switch to alejandra for nix formatting
This commit is contained in:
parent
1757bb6961
commit
c4f1643ee6
|
@ -9,7 +9,6 @@
|
|||
curl
|
||||
gh
|
||||
git
|
||||
nixfmt
|
||||
python3
|
||||
ruby
|
||||
wget
|
||||
|
|
|
@ -1,17 +1,20 @@
|
|||
{ pkgs, lib, config, ... }: {
|
||||
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
options = {
|
||||
guiApps.vsCodium.enable = lib.mkEnableOption "Enables VSCodium.";
|
||||
};
|
||||
|
||||
config = lib.mkIf config.guiApps.vsCodium.enable {
|
||||
|
||||
guiApps.alacritty.enable = lib.mkDefault true;
|
||||
|
||||
# Necessary fonts.
|
||||
home.packages = with pkgs; [
|
||||
(nerdfonts.override { fonts = [ "Noto" ]; })
|
||||
nixfmt
|
||||
(nerdfonts.override {fonts = ["Noto"];})
|
||||
alejandra
|
||||
];
|
||||
|
||||
programs.vscode = {
|
||||
|
@ -26,7 +29,7 @@
|
|||
"files.autoSave" = "afterDelay";
|
||||
"git.autofetch" = true;
|
||||
"git.confirmSync" = false;
|
||||
"nix.formatterPath" = "${pkgs.nixfmt}/bin/nixfmt";
|
||||
"nix.formatterPath" = "${pkgs.alejandra}/bin/alejandra";
|
||||
"terminal.external.linuxExec" = "${pkgs.alacritty}/bin/alacritty";
|
||||
"update.mode" = "none";
|
||||
"window.menuBarVisibility" = "hidden";
|
||||
|
|
Loading…
Reference in a new issue