32 lines
1 KiB
Nix
32 lines
1 KiB
Nix
{ config, lib, pkgs, inputs, ... }:
|
|
|
|
with lib;
|
|
let
|
|
cfg = config.modules.software.system.fish;
|
|
nix-colors-lib = inputs.nix-colors.lib.contrib { inherit pkgs; };
|
|
in {
|
|
options.modules.software.system.fish = {
|
|
enable = mkEnableOption "Enable fish, the friendly interpreted shell";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
user.packages = with pkgs; [ bat fd fzf grc ];
|
|
|
|
environment.systemPackages = with pkgs.fishPlugins; [ fzf-fish tide ];
|
|
|
|
users.defaultUserShell = pkgs.fish;
|
|
programs.fish.enable = true;
|
|
hm.programs.fish = let
|
|
colorScript = nix-colors-lib.shellThemeFromScheme { scheme = config.colorScheme; };
|
|
in {
|
|
enable = true;
|
|
plugins = [ { name = "grc"; src = pkgs.fishPlugins.grc.src; } ];
|
|
interactiveShellInit = ''
|
|
sh ${colorScript}
|
|
'';
|
|
functions.fish_greeting = ''
|
|
${lib.getExe pkgs.fastfetch} --logo-type small --key-width 11 -s title:separator:os:host:kernel:uptime:memory:swap:colors --colors-symbol circle --colors-padding-left 11
|
|
'';
|
|
};
|
|
};
|
|
}
|