1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-11-23 03:29:45 +01:00

vivid: add module

This commit is contained in:
arunoruto 2024-11-06 00:08:15 +01:00 committed by Mirza Arnaut
parent 2f607e07f3
commit 04b689f957
2 changed files with 141 additions and 0 deletions

View file

@ -248,6 +248,7 @@ let
./programs/vifm.nix
./programs/vim-vint.nix
./programs/vim.nix
./programs/vivid.nix
./programs/vscode.nix
./programs/vscode/haskell.nix
./programs/pywal.nix

140
modules/programs/vivid.nix Normal file
View file

@ -0,0 +1,140 @@
{ config, lib, pkgs, ... }:
let
yaml = pkgs.formats.yaml { };
bashLine = theme:
''export LS_COLORS="$(${lib.getExe pkgs.vivid} generate ${theme})"'';
fishLine = theme:
"set -gx LS_COLORS (${lib.getExe pkgs.vivid} generate ${theme})";
nushellLine = theme: "${lib.getExe pkgs.vivid} generate ${theme}";
zshLine = bashLine;
in with lib; {
meta.maintainers = with maintainers; [ arunoruto ];
options.programs.vivid = {
enable = mkEnableOption ''
vivid - A themeable LS_COLORS generator with a rich filetype datebase
<link xlink:href="https://github.com/sharkdp/vivid" />
'';
package = mkPackageOption pkgs "vivid" { };
enableBashIntegration = mkOption {
default = true;
type = types.bool;
description = ''
Whether to enable Bash integration.
Adds `${bashLine "<theme>"}` to Bash.
'';
};
enableFishIntegration = mkOption {
default = true;
type = types.bool;
description = ''
Whether to enable Fish integration.
Adds `${fishLine "<theme>"}` to Fish.
'';
};
enableNushellIntegration = mkOption {
default = true;
type = types.bool;
description = ''
Whether to enable Nushell integration.
Adds `${nushellLine "<theme>"}` to Nushell.
'';
};
enableZshIntegration = mkOption {
default = true;
type = types.bool;
description = ''
Whether to enable Zsh integration.
Adds `${zshLine "<theme>"}` to Zsh.
'';
};
theme = mkOption {
type = with types; nullOr str;
default = null;
example = "molokai";
description = ''
Color theme to enable.
Run `vivid themes` for a list of available themes.
'';
};
filetypes = mkOption {
type = yaml.type;
default = { };
example = literalExpression ''
{
core = {
regular_file = [ "$fi" ];
directory = [ "$di" ];
};
text = {
readme = [ "README.md" ];
licenses = [ "LICENSE" ];
};
}
'';
description = ''
Configuration written to
<filename>~/.config/vivid/filetypes.yml</filename>.
Visit <link xlink:href="https://github.com/sharkdp/vivid/tree/master/config/filetypes.yml" />
for a reference file.
'';
};
themes = mkOption {
type = types.attrsOf (yaml.type);
default = { };
example = literalExpression ''
{
mytheme = {
colors = {
blue = "0000ff";
};
core = {
directory = {
foreground = "blue";
font-style = "bold";
};
};
};
}
'';
description = ''
Theme files written to
<filename>~/.config/vivid/themes/<mytheme>.yml</filename>.
Visit <link xlink:href="https://github.com/sharkdp/vivid/tree/master/themes" />
for references.
'';
};
};
config = let cfg = config.programs.vivid;
in mkIf cfg.enable {
home.packages = [ cfg.package ];
programs.bash.initExtra =
mkIf cfg.enableBashIntegration (bashLine cfg.theme);
programs.fish.interactiveShellInit =
mkIf cfg.enableFishIntegration (fishLine cfg.theme);
programs.nushell.environmentVariables.LS_COLORS =
mkIf cfg.enableNushellIntegration
(hm.nushell.mkNushellInline (nushellLine cfg.theme));
programs.zsh.initExtra = mkIf cfg.enableZshIntegration (zshLine cfg.theme);
xdg.configFile = {
"vivid/filetypes.yml" =
mkIf (builtins.length (builtins.attrNames cfg.filetypes) > 0) {
source = yaml.generate "filetypes.yml" cfg.filetypes;
};
} // mapAttrs' (name: value:
nameValuePair "vivid/themes/${name}.yml" {
source = yaml.generate "${name}.yml" value;
}) cfg.themes;
};
}