chore: nixfmt
This commit is contained in:
parent
ff0f6d4a23
commit
76a755bcdf
10 changed files with 55 additions and 85 deletions
|
@ -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 = ''
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -33,7 +33,6 @@
|
|||
cpu_stats = true;
|
||||
cpu_temp = true;
|
||||
|
||||
|
||||
# IO Statistics
|
||||
io_read = true;
|
||||
io_stats = true;
|
||||
|
|
|
@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue