chore: update lock file
This commit is contained in:
parent
9c64f21bbc
commit
0226353025
17 changed files with 425 additions and 86 deletions
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
|
@ -9,13 +10,28 @@ in {
|
|||
enable = lib.mkEnableOption "fish";
|
||||
};
|
||||
config = lib.mkIf cfg.enable {
|
||||
programs.fish = {
|
||||
vendor = {
|
||||
functions.enable = true;
|
||||
config.enable = true;
|
||||
completions.enable = true;
|
||||
programs = {
|
||||
fish = {
|
||||
vendor = {
|
||||
functions.enable = true;
|
||||
config.enable = true;
|
||||
completions.enable = true;
|
||||
};
|
||||
enable = true;
|
||||
};
|
||||
enable = true;
|
||||
starship = {
|
||||
enable = true;
|
||||
presets = ["no-nerd-font"];
|
||||
};
|
||||
};
|
||||
|
||||
environment.systemPackages = builtins.attrValues {
|
||||
inherit
|
||||
(pkgs.fishPlugins)
|
||||
fzf-fish
|
||||
forgit
|
||||
autopair
|
||||
;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue