TL;DR See @Kaiepi's own answer for a solution. But every non-native type in P6 is already automatically an enhanced nullable type that's akin to an enhanced Maybe type. So that needs to be discussed too. To help structure my answer I'm going to pretend it's an XY problem even though it isn't.
Solving Y
I want to define a Maybe subset to use for this
See @Kaiepi's answer.
All non-native P6 types are already akin to Maybe types
The subset solution is overkill for what wikipedia defines as a Maybe type which boils down to:
None [or] the original data type
It turns out that all non-native P6 types are already something akin to an enhanced Maybe type.
The enhancement is that the (P6 equivalent of a) None knows what original data type it's been paired with:
my Int $foo;
say $foo # (Int) -- akin to an (Int) None
Solving X
I have a lot of functions that can fail, but also have a return type defined in their signature.
As you presumably know, unless use fatal; is in effect, P6 deliberately allows routines to return failures even if there's a return type check that doesn't explicitly allow them. (A subset return type check can explicitly reject them.)
So given that a return type check Foo is automatically turned into something akin to a subset with a where Failure | Foo clause, it's understandable that you thought to accommodate that by creating an matching subset so you could accept the result when assigning to a variable.
But as is hopefully clear from the earlier discussion, it may be better to make use of the built in aspect of P6's type system that's akin to Maybe types.
A Nil may be used to indicate what's called a benign failure. So the following works to indicate failure (as you wish to do in some of your routines) and set a receiving variable to a None (or rather the enhanced P6 equivalent of one):
sub foo (--> Int) { Nil }
my Int $bar = foo;
say $bar; # (Int)
So one option is that you replace calls to fail with return Nil (or just Nil).
One could imagine a pragma (called, say, failsoft) that demotes all Failures to benign failure Nils:
use failsoft;
sub foo (--> Int) { fail }
my Int $bar = foo;
say $bar; # (Int)
Nullable types
The wikipedia introduction about Maybe types also says:
A distinct, but related concept ... is called nullable types (often expressed as A?).
The closest P6 equivalent to the Int? syntax used by some languages to express a nullable Int is simply Int, without the question mark. The following are valid type constraints:
Int -- P6 equivalent of a nullable Int or a Maybe Int
Int:D -- P6 equivalent of a non-nullable Int or a Just Int
Int:U -- P6 equivalent of an Int null or an (Int) None
(:D and :U are called type smilies for an obvious reason. :))
Continuing, wikipedia's Nullable types page says:
In statically-typed languages, a nullable type is [a Maybe] type (in functional programming terms), while in dynamically-typed languages (where values have types, but variables do not), equivalent behavior is provided by having a single null value.
In P6:
Values have types -- but so do variables.
P6 types are akin to an enhanced Maybe type (as explained above) or an enhanced nullable type where there are as many Nones or "null" values as there are types instead of having just a single None or null value.
(So, is P6 a statically typed language or a dynamically typed language? It's actually Beyond static vs dynamic and is instead static and dynamic.)
Continuing:
Primitive types such as integers and booleans cannot generally be null, but the corresponding nullable types (nullable integer and nullable boolean, respectively) can also assume the NULL value.
In P6, all non-native types (like the arbitrary precision Int type) are akin to enhanced Maybe/nullable types.
In contrast, all native types (like int -- all lowercase) are non-nullable types -- what wikipedia is calling primitive types. They cannot be null or None:
my int $foo;
say $foo; # 0
$foo = int; # Cannot unbox a type object (int) to int
Finally, returning to the wikipedia Maybe page:
The core difference between [maybe] types and nullable types is that [maybe] types support nesting (Maybe (Maybe A) ≠ Maybe A), while nullable types do not (A?? = A?).
P6's built in types don't support nesting in this way without use of subsets. So a P6 type, while akin to an enhanced Maybe type, is really just an enhanced nullable type.