diff --git a/lib/modules/packages/oh-my-posh.nix b/lib/modules/packages/oh-my-posh.nix index e7fa5242..6495d5fa 100644 --- a/lib/modules/packages/oh-my-posh.nix +++ b/lib/modules/packages/oh-my-posh.nix @@ -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)); }; }; });