18 lines
350 B
Nix
Raw Normal View History

2024-07-20 06:10:56 +02:00
{
lib,
config,
pkgs,
...
}:
with lib;
{
options.default.terminal = mkOption {
type = types.str;
2025-02-23 14:52:07 +01:00
# TODO: Make sure everything works even without a default value here
# Maybe make sure most gui applications do not exist in the default specialisation
default = "foot";
2024-07-20 06:10:56 +02:00
description = "Default terminal application";
};
}