Add console module

This commit is contained in:
Daniel Thwaites 2020-12-20 19:17:53 +00:00
parent f9daee029e
commit 4ac0094a53
No known key found for this signature in database
GPG key ID: D8AFC4BF05670F9D
2 changed files with 28 additions and 0 deletions

View file

@ -1,5 +1,7 @@
{
imports = [
./stylix/default.nix
./modules/console.nix
];
}

26
modules/console.nix Normal file
View file

@ -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
];
};
}