home: terminal: make 'default' extensible

This commit is contained in:
Bruno BELANYI 2026-02-28 21:50:31 +00:00
parent 1a0b92ec9a
commit 9618a8ac9b
3 changed files with 13 additions and 1 deletions

View file

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