From 4ac0094a537bf7cdb642106bf51cdbdba9ede9c4 Mon Sep 17 00:00:00 2001 From: Daniel Thwaites Date: Sun, 20 Dec 2020 19:17:53 +0000 Subject: [PATCH] Add console module --- default.nix | 2 ++ modules/console.nix | 26 ++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 modules/console.nix 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 + ]; + }; +}