home: terminal: add alacritty

This commit is contained in:
Bruno BELANYI 2023-02-12 16:46:49 +00:00
parent b6bbe5a01e
commit f89e10fdca
2 changed files with 59 additions and 1 deletions

View file

@ -10,13 +10,14 @@ let
in
{
imports = [
./alacritty
./termite
];
options.my.home = with lib; {
terminal = {
program = mkOption {
type = with types; nullOr (enum [ "termite" ]);
type = with types; nullOr (enum [ "alacritty" "termite" ]);
default = null;
example = "termite";
description = "Which terminal to use for home session";