Make option names more clear

This commit is contained in:
Manuel Thalmann 2024-08-23 19:42:27 +02:00
parent d1fefa9d7d
commit d2228ee198

View file

@ -8,7 +8,7 @@
themeType = types.submodule (
{ config, ... }: {
options = {
path = mkOption {
source = mkOption {
type = types.path;
description = "The path to the oh-my-posh theme to use.";
};
@ -16,7 +16,7 @@
name = mkOption {
type = types.nullOr types.str;
description = "The name of the theme.";
default = lib.strings.removeSuffix ".omp" (lib.strings.removeSuffix ".json" (builtins.baseNameOf config.path));
default = lib.strings.removeSuffix ".omp" (lib.strings.removeSuffix ".json" (builtins.baseNameOf config.source));
};
};
});