home: terminal: add termite

This commit is contained in:
Bruno BELANYI 2021-04-05 00:57:32 +00:00
parent a4f3d67393
commit 07b91de2f2
2 changed files with 61 additions and 0 deletions

View file

@ -8,10 +8,18 @@ let
in
{
imports = [
./termite.nix
];
options.my.home = with lib; {
terminal = {
program = mkOption {
type = with types; nullOr (enum [ "termite" ]);
default = null;
example = "termite";
description = "Which terminal to use for home session";
};
colors = {
background = mkColorOption "Background color" "#161616";
foreground = mkColorOption "Foreground color" "#ffffff";