Refactor with nixfmt

This commit is contained in:
2026-02-06 08:36:47 +01:00
parent fe643f065b
commit 82e4ea3c73
41 changed files with 1259 additions and 1112 deletions

View File

@@ -1,28 +1,28 @@
{ pkgs, ... }:
{
programs.fish = {
enable = true;
interactiveShellInit = ''
# This is commented until a good way of installing themes is found
# fish_config theme choose Catppuccin\ Mocha
programs.fish = {
enable = true;
interactiveShellInit = ''
# This is commented until a good way of installing themes is found
# fish_config theme choose Catppuccin\ Mocha
function fish_greeting
krabby random --no-title --padding-left 2
end
function weather
curl "wttr.in/Bolzano?0?Q?"
end
function fish_greeting
krabby random --no-title --padding-left 2
end
function weather
curl "wttr.in/Bolzano?0?Q?"
end
function dev
nix develop --command "fish"
end
'';
plugins = with pkgs.fishPlugins; [
{
name = "fzf.fish";
src = fzf-fish.src;
}
];
};
function dev
nix develop --command "fish"
end
'';
plugins = with pkgs.fishPlugins; [
{
name = "fzf.fish";
src = fzf-fish.src;
}
];
};
}