home: terminal: add termite
This commit is contained in:
parent
a4f3d67393
commit
07b91de2f2
2 changed files with 61 additions and 0 deletions
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue