chore: nixfmt

This commit is contained in:
Alexandre Cavalheiro S. Tiago da Silva 2024-04-04 15:24:35 -03:00
parent ff0f6d4a23
commit 76a755bcdf
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF
10 changed files with 55 additions and 85 deletions

View file

@ -28,13 +28,9 @@
zoxide init --cmd cd fish | source
'';
shellAbbrs = {
z = "zoxide";
};
shellAbbrs = { z = "zoxide"; };
shellAliases = {
del = "trash_file";
};
shellAliases = { del = "trash_file"; };
functions = {
fish_prompt.body = ''

View file

@ -47,13 +47,9 @@
gpgsign = true;
};
tag = {
gpgsign = true;
};
tag = { gpgsign = true; };
difftool = {
prompt = true;
};
difftool = { prompt = true; };
mergetool = {
# https://www.git-scm.com/docs/git-mergetool#Documentation/git-mergetool.txt---no-prompt
@ -79,13 +75,9 @@
signingkey = "A1D3A2B4E14BD7C0445BB749A5767B54367CFBDF";
};
pull = {
ff = "only";
};
pull = { ff = "only"; };
init = {
defaultBranch = "main";
};
init = { defaultBranch = "main"; };
credential = {
helper = "/usr/libexec/git-core/git-credential-libsecret";

View file

@ -33,7 +33,6 @@
cpu_stats = true;
cpu_temp = true;
# IO Statistics
io_read = true;
io_stats = true;

View file

@ -1,17 +1,16 @@
{ pkgs, ... }:
{
programs.obs-studio =
{
enable = true;
plugins = with pkgs.obs-studio-plugins; [
input-overlay
# Currently broken due to onnxruntime failing to build.
# obs-backgroundremoval
obs-pipewire-audio-capture
obs-vaapi
obs-vkcapture
wlrobs
];
};
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
input-overlay
# Currently broken due to onnxruntime failing to build.
# obs-backgroundremoval
obs-pipewire-audio-capture
obs-vaapi
obs-vkcapture
wlrobs
];
};
}