077d8f07e7
Introduce a `shell` variable in host variables and enable the Fish package. Make Bash configuration conditional on the selected shell and add Fish integration for programs such as fzf, starship, kitty, zoxide, and eza. Provide a full Fish module with aliases, functions, and plugin placeholders. Update Stylix to configure Fish, Starship, Fzf, Bat, Anki, Btop, Kitty, and Vesktop themes. Remove the large Emoji module and simplify a few Dconf settings. All changes collectively enable and style the Fish shell across the system.
71 lines
1.1 KiB
Nix
71 lines
1.1 KiB
Nix
{host, ...}: {
|
|
stylix.targets = {
|
|
librewolf.profileNames = ["${host}"];
|
|
|
|
hyprland = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
hyprpaper.enable = true;
|
|
image.enable = true;
|
|
};
|
|
|
|
vscode.enable = false;
|
|
|
|
zed.enable = false;
|
|
|
|
vesktop = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
fonts.enable = true;
|
|
};
|
|
|
|
noctalia-shell.enable = true;
|
|
|
|
qt = {
|
|
enable = true;
|
|
platform = "qtct";
|
|
};
|
|
|
|
fish = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
inputs.enable = true;
|
|
};
|
|
|
|
starship = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
};
|
|
|
|
fzf = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
};
|
|
|
|
bat = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
};
|
|
|
|
anki = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
};
|
|
|
|
btop = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
opacity.enable = true;
|
|
};
|
|
|
|
kitty = {
|
|
enable = true;
|
|
colors.enable = true;
|
|
fonts.enable = true;
|
|
inputs.enable = true;
|
|
opacity.enable = true;
|
|
variant256Colors = true;
|
|
};
|
|
};
|
|
}
|