desktop: terminal: add my.desktop.terminal.default for the niri Mod+Return binding

This commit is contained in:
2026-08-01 17:13:52 +08:00
parent 6a2d25383d
commit 27aaa9d05f
3 changed files with 14 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
{ lib, ... }:
{
options.my.desktop.terminal.default = {
command = lib.mkOption {
type = lib.types.str;
default = "kitty";
};
desktop = lib.mkOption {
type = lib.types.str;
default = "kitty.desktop";
};
};
}