chore: format all files to nixpkgs standards

This commit is contained in:
Alexandre Cavalheiro S. Tiago da Silva 2024-01-16 11:33:01 -03:00
parent c089af45ef
commit 965ac78482
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF
12 changed files with 152 additions and 121 deletions

View file

@ -33,11 +33,11 @@
fish_prompt.body = ''
set_color CC241D
echo '&' (set_color normal)
'';
'';
fzf_edit.body = ''
fzf --multi --bind 'enter:become(nvim {+})'
'';
'';
};
};
}

View file

@ -27,7 +27,7 @@
extraConfig = {
core = {
# Set the editor to be used by GIT
# Set the editor to be used by GIT
editor = "nvim";
# Custom .gitignore
@ -38,13 +38,13 @@
};
color = {
# Use colors in GIT commmands.
ui = "auto";
# Use colors in GIT commmands.
ui = "auto";
};
commit = {
# https://help.github.com/articles/signing-commits-using-gpg/
gpgsign = true;
# https://help.github.com/articles/signing-commits-using-gpg/
gpgsign = true;
};
tag = {

View file

@ -27,7 +27,7 @@
cpu_mhz = true;
cpu_load_change = true;
cpu_load_value = [ 60 90 ];
cpu_load_color= [ "39F900" "FDFD09" "B22222" ];
cpu_load_color = [ "39F900" "FDFD09" "B22222" ];
# IO Statistics
@ -48,7 +48,7 @@
fps_color = [ "B22222" "FDFD09" "39F900" ];
frametime = true;
frame_timing = true; # Display graphs
histogram = true; # ^
histogram = true; # ^
# Show whether gamemode is enabled for the application.
gamemode = true;
@ -57,7 +57,7 @@
no_display = true;
# Where to output log files.
output_folder=/home/wizardlink/.config/MangoHud;
output_folder = /home/wizardlink/.config/MangoHud;
};
};
}

View file

@ -1,7 +1,7 @@
{ pkgs, ... }:
{
programs.obs-studio =
programs.obs-studio =
{
enable = true;
plugins = with pkgs.obs-studio-plugins; [

View file

@ -4,8 +4,8 @@
enable = true;
package = (pkgs.waybar.overrideAttrs (oldAttrs: {
mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true" ];
})
mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true" ];
})
);
settings = {
@ -14,30 +14,30 @@
position = "top";
modules-left = [
"hyprland/submap"
"hyprland/workspaces"
"custom/arrow10"
"hyprland/window"
"hyprland/workspaces"
"custom/arrow10"
"hyprland/window"
];
modules-right = [
"custom/arrow9"
"pulseaudio"
"custom/arrow8"
"network"
"custom/arrow7"
"memory"
"custom/arrow6"
"cpu"
"custom/arrow5"
"temperature"
"custom/arrow4"
"battery"
"custom/arrow3"
"hyprland/language"
"custom/arrow2"
"tray"
"clock#date"
"custom/arrow1"
"clock#time"
"pulseaudio"
"custom/arrow8"
"network"
"custom/arrow7"
"memory"
"custom/arrow6"
"cpu"
"custom/arrow5"
"temperature"
"custom/arrow4"
"battery"
"custom/arrow3"
"hyprland/language"
"custom/arrow2"
"tray"
"clock#date"
"custom/arrow1"
"clock#time"
];
# Module configuration
@ -56,10 +56,10 @@
format-alt = "{icon} {power}W";
format-icons = [
""
""
""
""
""
""
""
""
""
];
tooltip = false;
};
@ -137,7 +137,7 @@
car = "";
default = [
""
""
""
];
};
scroll-step = 1;
@ -151,10 +151,10 @@
format = "{icon} {temperatureC}°";
format-icons = [
""
""
""
""
""
""
""
""
""
];
tooltip = false;
};

View file

@ -4,6 +4,6 @@
programs.wezterm = {
enable = true;
extraConfig = builtins.readFile ./wezterm.lua;
package = (pkgs.callPackage ./package.nix {});
package = (pkgs.callPackage ./package.nix { });
};
}