diff --git a/default.nix b/default.nix index 19a35438..139c2989 100644 --- a/default.nix +++ b/default.nix @@ -1,5 +1,7 @@ { imports = [ ./stylix/default.nix + + ./modules/console.nix ]; } diff --git a/modules/console.nix b/modules/console.nix new file mode 100644 index 00000000..360f959d --- /dev/null +++ b/modules/console.nix @@ -0,0 +1,26 @@ +{ config, ... }: + +with config.lib.stylix.colors; + +{ + console = { + colors = [ + base00-hex + base08-hex + base0B-hex + base0A-hex + base0D-hex + base0E-hex + base0C-hex + base05-hex + base03-hex + base08-hex + base0B-hex + base0A-hex + base0D-hex + base0E-hex + base0C-hex + base07-hex + ]; + }; +}