nix-config/home/gburd/features/cli/shellcolor.nix
Greg Burd f3fd89af54
A fork of Misterio77 and his standard template.
Many thangs to the hard work and generous availability of:
git@github.com:Misterio77/nix-config.git
2023-09-15 10:53:38 -04:00

26 lines
699 B
Nix

{ config, ... }:
let inherit (config.colorscheme) colors;
in {
programs.shellcolor = {
enable = true;
settings = {
base00 = "${colors.base00}";
base01 = "${colors.base01}";
base02 = "${colors.base02}";
base03 = "${colors.base03}";
base04 = "${colors.base04}";
base05 = "${colors.base05}";
base06 = "${colors.base06}";
base07 = "${colors.base07}";
base08 = "${colors.base08}";
base09 = "${colors.base09}";
base0A = "${colors.base0A}";
base0B = "${colors.base0B}";
base0C = "${colors.base0C}";
base0D = "${colors.base0D}";
base0E = "${colors.base0E}";
base0F = "${colors.base0F}";
};
};
}